diff --git a/grammar.js b/grammar.js index db16bf8..d1df76a 100644 --- a/grammar.js +++ b/grammar.js @@ -249,7 +249,7 @@ module.exports = grammar({ optional($.ms_call_modifier), $._declaration_specifiers, field('declarator', alias($._old_style_function_declarator, $.function_declarator)), - repeat($.declaration), + repeat1($.declaration), field('body', $.compound_statement), ), diff --git a/src/grammar.json b/src/grammar.json index fdea897..2277f87 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2858,7 +2858,7 @@ } }, { - "type": "REPEAT", + "type": "REPEAT1", "content": { "type": "SYMBOL", "name": "declaration" diff --git a/src/parser.c b/src/parser.c index 4c5e0a9..4c46b58 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2023 -#define LARGE_STATE_COUNT 463 +#define STATE_COUNT 2015 +#define LARGE_STATE_COUNT 455 #define SYMBOL_COUNT 360 #define ALIAS_COUNT 3 #define TOKEN_COUNT 161 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 133 +#define PRODUCTION_ID_COUNT 131 enum ts_symbol_identifiers { sym_identifier = 1, @@ -2701,101 +2701,99 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [33] = {.index = 41, .length = 3}, [34] = {.index = 44, .length = 2}, [35] = {.index = 46, .length = 2}, - [36] = {.index = 48, .length = 5}, - [37] = {.index = 53, .length = 3}, - [38] = {.index = 56, .length = 1}, - [39] = {.index = 56, .length = 1}, - [40] = {.index = 57, .length = 2}, - [41] = {.index = 59, .length = 2}, - [42] = {.index = 61, .length = 1}, - [43] = {.index = 62, .length = 2}, - [44] = {.index = 64, .length = 1}, - [45] = {.index = 65, .length = 2}, - [46] = {.index = 67, .length = 2}, - [47] = {.index = 69, .length = 2}, - [48] = {.index = 71, .length = 2}, - [49] = {.index = 73, .length = 2}, - [50] = {.index = 75, .length = 2}, - [51] = {.index = 77, .length = 2}, - [52] = {.index = 79, .length = 2}, - [54] = {.index = 81, .length = 2}, - [55] = {.index = 83, .length = 1}, - [56] = {.index = 84, .length = 1}, - [57] = {.index = 85, .length = 3}, - [58] = {.index = 88, .length = 1}, - [59] = {.index = 89, .length = 1}, - [60] = {.index = 90, .length = 2}, - [61] = {.index = 92, .length = 1}, - [62] = {.index = 93, .length = 3}, - [63] = {.index = 96, .length = 3}, - [64] = {.index = 99, .length = 2}, - [65] = {.index = 101, .length = 3}, - [66] = {.index = 104, .length = 2}, - [67] = {.index = 106, .length = 5}, - [68] = {.index = 111, .length = 3}, - [69] = {.index = 114, .length = 5}, - [70] = {.index = 119, .length = 2}, - [71] = {.index = 121, .length = 2}, - [72] = {.index = 123, .length = 3}, - [73] = {.index = 126, .length = 2}, - [74] = {.index = 128, .length = 2}, - [75] = {.index = 130, .length = 1}, - [76] = {.index = 131, .length = 2}, - [77] = {.index = 133, .length = 2}, - [78] = {.index = 135, .length = 2}, - [79] = {.index = 137, .length = 3}, - [80] = {.index = 140, .length = 2}, - [81] = {.index = 142, .length = 2}, - [82] = {.index = 144, .length = 2}, - [83] = {.index = 146, .length = 1}, - [84] = {.index = 147, .length = 2}, - [85] = {.index = 149, .length = 2}, - [86] = {.index = 151, .length = 4}, - [87] = {.index = 155, .length = 1}, - [88] = {.index = 156, .length = 2}, - [89] = {.index = 158, .length = 1}, - [90] = {.index = 159, .length = 1}, - [91] = {.index = 160, .length = 4}, - [92] = {.index = 164, .length = 4}, - [93] = {.index = 168, .length = 2}, - [94] = {.index = 170, .length = 2}, - [95] = {.index = 172, .length = 3}, - [96] = {.index = 175, .length = 5}, - [97] = {.index = 180, .length = 3}, - [98] = {.index = 183, .length = 2}, - [99] = {.index = 185, .length = 1}, - [101] = {.index = 186, .length = 2}, - [102] = {.index = 188, .length = 2}, - [103] = {.index = 190, .length = 2}, - [104] = {.index = 192, .length = 3}, - [105] = {.index = 195, .length = 2}, - [106] = {.index = 197, .length = 2}, - [107] = {.index = 199, .length = 2}, - [108] = {.index = 201, .length = 2}, - [109] = {.index = 203, .length = 3}, - [110] = {.index = 206, .length = 2}, - [111] = {.index = 208, .length = 1}, - [112] = {.index = 209, .length = 5}, - [113] = {.index = 214, .length = 2}, - [114] = {.index = 216, .length = 3}, - [115] = {.index = 219, .length = 2}, - [116] = {.index = 219, .length = 2}, - [117] = {.index = 221, .length = 3}, - [118] = {.index = 224, .length = 2}, - [119] = {.index = 226, .length = 1}, - [120] = {.index = 227, .length = 4}, - [121] = {.index = 231, .length = 3}, - [122] = {.index = 234, .length = 2}, - [123] = {.index = 236, .length = 2}, - [124] = {.index = 35, .length = 1}, - [125] = {.index = 238, .length = 5}, - [126] = {.index = 243, .length = 4}, - [127] = {.index = 247, .length = 2}, - [128] = {.index = 249, .length = 2}, - [129] = {.index = 251, .length = 2}, - [130] = {.index = 253, .length = 5}, - [131] = {.index = 258, .length = 2}, - [132] = {.index = 260, .length = 3}, + [36] = {.index = 48, .length = 3}, + [37] = {.index = 51, .length = 1}, + [38] = {.index = 51, .length = 1}, + [39] = {.index = 52, .length = 2}, + [40] = {.index = 54, .length = 2}, + [41] = {.index = 56, .length = 1}, + [42] = {.index = 57, .length = 2}, + [43] = {.index = 59, .length = 1}, + [44] = {.index = 60, .length = 2}, + [45] = {.index = 62, .length = 2}, + [46] = {.index = 64, .length = 2}, + [47] = {.index = 66, .length = 2}, + [48] = {.index = 68, .length = 2}, + [49] = {.index = 70, .length = 2}, + [50] = {.index = 72, .length = 2}, + [51] = {.index = 74, .length = 2}, + [53] = {.index = 76, .length = 2}, + [54] = {.index = 78, .length = 1}, + [55] = {.index = 79, .length = 1}, + [56] = {.index = 80, .length = 3}, + [57] = {.index = 83, .length = 1}, + [58] = {.index = 84, .length = 1}, + [59] = {.index = 85, .length = 2}, + [60] = {.index = 87, .length = 1}, + [61] = {.index = 88, .length = 3}, + [62] = {.index = 91, .length = 3}, + [63] = {.index = 94, .length = 2}, + [64] = {.index = 96, .length = 3}, + [65] = {.index = 99, .length = 2}, + [66] = {.index = 101, .length = 5}, + [67] = {.index = 106, .length = 3}, + [68] = {.index = 109, .length = 2}, + [69] = {.index = 111, .length = 2}, + [70] = {.index = 113, .length = 3}, + [71] = {.index = 116, .length = 2}, + [72] = {.index = 118, .length = 2}, + [73] = {.index = 120, .length = 1}, + [74] = {.index = 121, .length = 2}, + [75] = {.index = 123, .length = 2}, + [76] = {.index = 125, .length = 2}, + [77] = {.index = 127, .length = 3}, + [78] = {.index = 130, .length = 2}, + [79] = {.index = 132, .length = 2}, + [80] = {.index = 134, .length = 2}, + [81] = {.index = 136, .length = 1}, + [82] = {.index = 137, .length = 2}, + [83] = {.index = 139, .length = 2}, + [84] = {.index = 141, .length = 4}, + [85] = {.index = 145, .length = 1}, + [86] = {.index = 146, .length = 2}, + [87] = {.index = 148, .length = 1}, + [88] = {.index = 149, .length = 1}, + [89] = {.index = 150, .length = 4}, + [90] = {.index = 154, .length = 4}, + [91] = {.index = 158, .length = 2}, + [92] = {.index = 160, .length = 2}, + [93] = {.index = 162, .length = 3}, + [94] = {.index = 165, .length = 5}, + [95] = {.index = 170, .length = 3}, + [96] = {.index = 173, .length = 2}, + [97] = {.index = 175, .length = 1}, + [99] = {.index = 176, .length = 2}, + [100] = {.index = 178, .length = 2}, + [101] = {.index = 180, .length = 2}, + [102] = {.index = 182, .length = 3}, + [103] = {.index = 185, .length = 2}, + [104] = {.index = 187, .length = 2}, + [105] = {.index = 189, .length = 2}, + [106] = {.index = 191, .length = 2}, + [107] = {.index = 193, .length = 3}, + [108] = {.index = 196, .length = 2}, + [109] = {.index = 198, .length = 1}, + [110] = {.index = 199, .length = 5}, + [111] = {.index = 204, .length = 2}, + [112] = {.index = 206, .length = 3}, + [113] = {.index = 209, .length = 2}, + [114] = {.index = 209, .length = 2}, + [115] = {.index = 211, .length = 3}, + [116] = {.index = 214, .length = 2}, + [117] = {.index = 216, .length = 1}, + [118] = {.index = 217, .length = 4}, + [119] = {.index = 221, .length = 3}, + [120] = {.index = 224, .length = 2}, + [121] = {.index = 226, .length = 2}, + [122] = {.index = 35, .length = 1}, + [123] = {.index = 228, .length = 5}, + [124] = {.index = 233, .length = 4}, + [125] = {.index = 237, .length = 2}, + [126] = {.index = 239, .length = 2}, + [127] = {.index = 241, .length = 2}, + [128] = {.index = 243, .length = 5}, + [129] = {.index = 248, .length = 2}, + [130] = {.index = 250, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2878,309 +2876,297 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 1}, {field_type, 0, .inherited = true}, [48] = - {field_body, 2}, - {field_declarator, 1}, - {field_declarator, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_type, 0, .inherited = true}, - [53] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [56] = + [51] = {field_type, 2}, - [57] = + [52] = {field_name, 1}, {field_value, 2}, - [59] = + [54] = {field_name, 1}, {field_parameters, 2}, - [61] = + [56] = {field_condition, 1}, - [62] = + [57] = {field_alternative, 2}, {field_name, 1}, - [64] = + [59] = {field_type, 0, .inherited = true}, - [65] = + [60] = {field_declarator, 2}, {field_type, 0}, - [67] = + [62] = {field_left, 0}, {field_right, 2}, - [69] = + [64] = {field_type, 1}, {field_value, 3}, - [71] = + [66] = {field_declarator, 2}, {field_type, 1}, - [73] = + [68] = {field_declarator, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [75] = + [70] = {field_declarator, 0}, {field_declarator, 1, .inherited = true}, - [77] = + [72] = {field_name, 2}, {field_prefix, 0}, - [79] = + [74] = {field_name, 1}, {field_underlying_type, 3}, - [81] = + [76] = {field_body, 3}, {field_name, 2}, - [83] = + [78] = {field_name, 3}, - [84] = + [79] = {field_body, 3}, - [85] = + [80] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [88] = + [83] = {field_initializer, 0}, - [89] = + [84] = {field_assembly_code, 2}, - [90] = + [85] = {field_name, 0}, {field_type, 2}, - [92] = + [87] = {field_declarator, 2}, - [93] = + [88] = {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [96] = + [91] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [99] = + [94] = {field_declarator, 0}, {field_value, 2}, - [101] = + [96] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [104] = + [99] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [106] = + [101] = {field_body, 3}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [111] = - {field_body, 3}, - {field_declarator, 2}, - {field_type, 1, .inherited = true}, - [114] = + [106] = {field_body, 3}, {field_declarator, 2}, - {field_declarator, 2, .inherited = true}, - {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [119] = + [109] = {field_argument, 0}, {field_index, 2}, - [121] = + [111] = {field_alternative, 3}, {field_condition, 0}, - [123] = + [113] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [126] = + [116] = {field_alternative, 3}, {field_condition, 1}, - [128] = + [118] = {field_alternative, 3}, {field_name, 1}, - [130] = + [120] = {field_size, 1}, - [131] = + [121] = {field_declarator, 3}, {field_type, 1}, - [133] = + [123] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [135] = + [125] = {field_name, 0}, {field_value, 2}, - [137] = + [127] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [140] = + [130] = {field_declarator, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [142] = + [132] = {field_body, 4}, {field_name, 3}, - [144] = + [134] = {field_body, 1}, {field_condition, 3}, - [146] = + [136] = {field_update, 2}, - [147] = + [137] = {field_initializer, 0}, {field_update, 2}, - [149] = + [139] = {field_condition, 1}, {field_initializer, 0}, - [151] = + [141] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [155] = + [145] = {field_operand, 1}, - [156] = + [146] = {field_assembly_code, 2}, {field_output_operands, 3}, - [158] = + [148] = {field_assembly_code, 3}, - [159] = + [149] = {field_declarator, 3}, - [160] = + [150] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [164] = + [154] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [168] = + [158] = {field_declarator, 0}, {field_size, 2}, - [170] = + [160] = {field_declarator, 1}, {field_declarator, 2}, - [172] = + [162] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [175] = + [165] = {field_body, 4}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [180] = + [170] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [183] = + [173] = {field_alternative, 4}, {field_condition, 1}, - [185] = + [175] = {field_size, 2}, - [186] = + [176] = {field_body, 2}, {field_filter, 1}, - [188] = + [178] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [190] = + [180] = {field_condition, 1}, {field_update, 3}, - [192] = + [182] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [195] = + [185] = {field_initializer, 0}, {field_update, 3}, - [197] = + [187] = {field_condition, 2}, {field_initializer, 0}, - [199] = + [189] = {field_member, 4}, {field_type, 2}, - [201] = + [191] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [203] = + [193] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [206] = + [196] = {field_assembly_code, 3}, {field_output_operands, 4}, - [208] = + [198] = {field_declarator, 4}, - [209] = + [199] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [214] = + [204] = {field_declarator, 0}, {field_size, 3}, - [216] = + [206] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [219] = + [209] = {field_designator, 0}, {field_value, 2}, - [221] = + [211] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [224] = + [214] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [226] = + [216] = {field_register, 1}, - [227] = + [217] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [231] = + [221] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [234] = + [224] = {field_constraint, 0}, {field_value, 2}, - [236] = + [226] = {field_register, 1}, {field_register, 2, .inherited = true}, - [238] = + [228] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [243] = + [233] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [247] = + [237] = {field_end, 3}, {field_start, 1}, - [249] = + [239] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [251] = + [241] = {field_label, 1}, {field_label, 2, .inherited = true}, - [253] = + [243] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [258] = + [248] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [260] = + [250] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3215,37 +3201,37 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [31] = { [0] = alias_sym_statement_identifier, }, - [37] = { + [36] = { [2] = alias_sym_field_identifier, }, - [39] = { + [38] = { [2] = alias_sym_type_identifier, }, - [52] = { + [51] = { [1] = alias_sym_type_identifier, }, - [53] = { + [52] = { [0] = alias_sym_field_identifier, }, - [54] = { + [53] = { [2] = alias_sym_type_identifier, }, - [55] = { + [54] = { [3] = alias_sym_type_identifier, }, - [79] = { + [77] = { [1] = alias_sym_type_identifier, }, - [81] = { + [79] = { [3] = alias_sym_type_identifier, }, - [100] = { + [98] = { [1] = alias_sym_field_identifier, }, - [107] = { + [105] = { [4] = alias_sym_field_identifier, }, - [115] = { + [113] = { [0] = alias_sym_field_identifier, }, }; @@ -3279,25 +3265,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [21] = 5, [22] = 22, [23] = 23, - [24] = 22, - [25] = 23, - [26] = 26, - [27] = 27, - [28] = 27, + [24] = 24, + [25] = 25, + [26] = 22, + [27] = 23, + [28] = 25, [29] = 29, - [30] = 30, - [31] = 27, - [32] = 29, + [30] = 29, + [31] = 22, + [32] = 32, [33] = 23, - [34] = 30, - [35] = 35, - [36] = 30, - [37] = 30, - [38] = 29, - [39] = 23, - [40] = 22, - [41] = 27, - [42] = 29, + [34] = 25, + [35] = 29, + [36] = 36, + [37] = 32, + [38] = 23, + [39] = 25, + [40] = 32, + [41] = 29, + [42] = 32, [43] = 43, [44] = 44, [45] = 45, @@ -3305,31 +3291,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 48, - [51] = 46, - [52] = 46, - [53] = 47, - [54] = 45, + [50] = 46, + [51] = 45, + [52] = 49, + [53] = 45, + [54] = 47, [55] = 48, - [56] = 49, - [57] = 45, - [58] = 46, - [59] = 48, - [60] = 47, + [56] = 46, + [57] = 47, + [58] = 45, + [59] = 46, + [60] = 49, [61] = 49, - [62] = 45, - [63] = 47, - [64] = 49, + [62] = 48, + [63] = 48, + [64] = 47, [65] = 65, [66] = 65, [67] = 46, [68] = 65, [69] = 45, - [70] = 48, + [70] = 65, [71] = 47, - [72] = 49, - [73] = 65, - [74] = 65, + [72] = 65, + [73] = 49, + [74] = 48, [75] = 75, [76] = 75, [77] = 75, @@ -3342,9 +3328,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [84] = 84, [85] = 85, [86] = 86, - [87] = 87, + [87] = 82, [88] = 88, - [89] = 89, + [89] = 88, [90] = 90, [91] = 91, [92] = 92, @@ -3370,9 +3356,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [112] = 112, [113] = 113, [114] = 114, - [115] = 109, + [115] = 115, [116] = 116, - [117] = 106, + [117] = 117, [118] = 118, [119] = 119, [120] = 120, @@ -3401,283 +3387,283 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [143] = 143, [144] = 144, [145] = 145, - [146] = 146, - [147] = 147, + [146] = 80, + [147] = 80, [148] = 80, - [149] = 80, - [150] = 80, - [151] = 91, - [152] = 101, - [153] = 102, - [154] = 103, - [155] = 104, - [156] = 105, - [157] = 109, - [158] = 98, - [159] = 110, - [160] = 99, - [161] = 111, - [162] = 100, - [163] = 111, - [164] = 112, - [165] = 113, - [166] = 101, + [149] = 90, + [150] = 83, + [151] = 88, + [152] = 97, + [153] = 84, + [154] = 81, + [155] = 85, + [156] = 91, + [157] = 110, + [158] = 92, + [159] = 93, + [160] = 111, + [161] = 108, + [162] = 112, + [163] = 109, + [164] = 105, + [165] = 108, + [166] = 90, [167] = 114, - [168] = 118, - [169] = 108, - [170] = 106, - [171] = 102, - [172] = 97, - [173] = 116, - [174] = 103, - [175] = 118, - [176] = 104, - [177] = 82, - [178] = 107, - [179] = 109, - [180] = 110, - [181] = 108, - [182] = 111, - [183] = 112, - [184] = 113, - [185] = 114, - [186] = 118, - [187] = 108, - [188] = 106, - [189] = 83, - [190] = 116, - [191] = 84, - [192] = 85, - [193] = 82, - [194] = 83, - [195] = 84, - [196] = 85, - [197] = 88, - [198] = 89, - [199] = 90, - [200] = 86, - [201] = 87, - [202] = 95, - [203] = 96, - [204] = 81, - [205] = 97, - [206] = 98, - [207] = 81, - [208] = 103, - [209] = 104, - [210] = 86, - [211] = 87, - [212] = 91, - [213] = 92, + [168] = 115, + [169] = 117, + [170] = 113, + [171] = 109, + [172] = 86, + [173] = 82, + [174] = 118, + [175] = 94, + [176] = 83, + [177] = 88, + [178] = 81, + [179] = 86, + [180] = 109, + [181] = 105, + [182] = 108, + [183] = 114, + [184] = 115, + [185] = 117, + [186] = 82, + [187] = 95, + [188] = 86, + [189] = 98, + [190] = 99, + [191] = 105, + [192] = 118, + [193] = 98, + [194] = 99, + [195] = 104, + [196] = 106, + [197] = 107, + [198] = 90, + [199] = 118, + [200] = 116, + [201] = 97, + [202] = 84, + [203] = 85, + [204] = 91, + [205] = 116, + [206] = 96, + [207] = 100, + [208] = 101, + [209] = 103, + [210] = 110, + [211] = 111, + [212] = 112, + [213] = 113, [214] = 93, [215] = 94, - [216] = 100, - [217] = 101, - [218] = 102, - [219] = 105, - [220] = 116, - [221] = 88, - [222] = 89, - [223] = 90, - [224] = 82, - [225] = 83, - [226] = 84, - [227] = 85, - [228] = 86, - [229] = 105, - [230] = 107, - [231] = 91, - [232] = 92, - [233] = 93, - [234] = 94, - [235] = 87, - [236] = 113, - [237] = 95, - [238] = 96, - [239] = 81, - [240] = 88, - [241] = 114, - [242] = 89, - [243] = 90, - [244] = 97, - [245] = 112, - [246] = 96, - [247] = 92, - [248] = 93, - [249] = 94, - [250] = 110, - [251] = 107, - [252] = 98, - [253] = 99, - [254] = 100, - [255] = 95, - [256] = 99, - [257] = 145, - [258] = 141, - [259] = 142, - [260] = 144, - [261] = 145, - [262] = 143, - [263] = 146, - [264] = 137, - [265] = 147, - [266] = 121, - [267] = 122, - [268] = 126, - [269] = 128, - [270] = 138, + [216] = 95, + [217] = 102, + [218] = 98, + [219] = 99, + [220] = 101, + [221] = 103, + [222] = 104, + [223] = 106, + [224] = 107, + [225] = 101, + [226] = 103, + [227] = 110, + [228] = 111, + [229] = 112, + [230] = 113, + [231] = 116, + [232] = 97, + [233] = 84, + [234] = 85, + [235] = 91, + [236] = 92, + [237] = 93, + [238] = 94, + [239] = 95, + [240] = 96, + [241] = 100, + [242] = 102, + [243] = 96, + [244] = 81, + [245] = 83, + [246] = 115, + [247] = 104, + [248] = 117, + [249] = 106, + [250] = 107, + [251] = 100, + [252] = 114, + [253] = 102, + [254] = 92, + [255] = 121, + [256] = 145, + [257] = 143, + [258] = 120, + [259] = 121, + [260] = 122, + [261] = 124, + [262] = 125, + [263] = 126, + [264] = 123, + [265] = 128, + [266] = 127, + [267] = 119, + [268] = 131, + [269] = 137, + [270] = 270, [271] = 129, - [272] = 119, - [273] = 273, - [274] = 120, - [275] = 127, - [276] = 130, - [277] = 132, - [278] = 133, - [279] = 134, - [280] = 135, - [281] = 136, - [282] = 140, - [283] = 123, - [284] = 124, - [285] = 131, - [286] = 129, - [287] = 119, - [288] = 139, - [289] = 141, - [290] = 144, - [291] = 143, - [292] = 146, - [293] = 137, - [294] = 122, - [295] = 126, - [296] = 128, - [297] = 138, - [298] = 120, - [299] = 127, - [300] = 130, - [301] = 132, - [302] = 134, - [303] = 135, - [304] = 136, - [305] = 140, - [306] = 123, - [307] = 124, - [308] = 125, - [309] = 131, - [310] = 142, - [311] = 145, - [312] = 147, - [313] = 121, - [314] = 133, - [315] = 131, - [316] = 139, - [317] = 125, - [318] = 273, - [319] = 319, - [320] = 146, - [321] = 137, + [272] = 130, + [273] = 132, + [274] = 133, + [275] = 134, + [276] = 135, + [277] = 136, + [278] = 138, + [279] = 139, + [280] = 140, + [281] = 141, + [282] = 131, + [283] = 142, + [284] = 144, + [285] = 145, + [286] = 120, + [287] = 122, + [288] = 124, + [289] = 123, + [290] = 128, + [291] = 127, + [292] = 119, + [293] = 129, + [294] = 130, + [295] = 132, + [296] = 134, + [297] = 135, + [298] = 136, + [299] = 138, + [300] = 139, + [301] = 140, + [302] = 141, + [303] = 142, + [304] = 143, + [305] = 121, + [306] = 125, + [307] = 126, + [308] = 133, + [309] = 142, + [310] = 144, + [311] = 137, + [312] = 270, + [313] = 313, + [314] = 313, + [315] = 122, + [316] = 316, + [317] = 128, + [318] = 127, + [319] = 119, + [320] = 320, + [321] = 321, [322] = 322, - [323] = 123, - [324] = 124, - [325] = 125, - [326] = 143, - [327] = 327, - [328] = 328, - [329] = 147, - [330] = 121, - [331] = 331, - [332] = 122, - [333] = 333, - [334] = 334, - [335] = 126, - [336] = 128, - [337] = 138, + [323] = 323, + [324] = 129, + [325] = 130, + [326] = 132, + [327] = 133, + [328] = 134, + [329] = 135, + [330] = 144, + [331] = 136, + [332] = 138, + [333] = 323, + [334] = 139, + [335] = 140, + [336] = 141, + [337] = 313, [338] = 338, - [339] = 327, + [339] = 124, [340] = 340, - [341] = 322, - [342] = 120, - [343] = 127, - [344] = 130, - [345] = 132, - [346] = 133, - [347] = 134, - [348] = 135, - [349] = 349, - [350] = 328, - [351] = 334, - [352] = 333, - [353] = 327, - [354] = 322, - [355] = 334, - [356] = 333, - [357] = 139, - [358] = 327, - [359] = 322, - [360] = 136, - [361] = 349, - [362] = 362, - [363] = 328, - [364] = 334, - [365] = 333, - [366] = 333, - [367] = 141, - [368] = 328, - [369] = 142, - [370] = 327, - [371] = 322, - [372] = 334, - [373] = 349, - [374] = 144, - [375] = 349, - [376] = 331, - [377] = 140, - [378] = 349, - [379] = 331, - [380] = 331, - [381] = 328, + [341] = 125, + [342] = 342, + [343] = 340, + [344] = 316, + [345] = 338, + [346] = 321, + [347] = 323, + [348] = 340, + [349] = 316, + [350] = 338, + [351] = 126, + [352] = 321, + [353] = 323, + [354] = 123, + [355] = 342, + [356] = 356, + [357] = 340, + [358] = 316, + [359] = 338, + [360] = 338, + [361] = 145, + [362] = 340, + [363] = 143, + [364] = 321, + [365] = 323, + [366] = 316, + [367] = 342, + [368] = 120, + [369] = 342, + [370] = 370, + [371] = 342, + [372] = 313, + [373] = 321, + [374] = 374, + [375] = 374, + [376] = 374, + [377] = 374, + [378] = 378, + [379] = 378, + [380] = 380, + [381] = 378, [382] = 382, - [383] = 382, - [384] = 382, - [385] = 382, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 387, - [390] = 273, - [391] = 386, - [392] = 386, - [393] = 387, - [394] = 386, - [395] = 387, - [396] = 386, - [397] = 387, - [398] = 387, - [399] = 386, + [383] = 270, + [384] = 378, + [385] = 378, + [386] = 382, + [387] = 382, + [388] = 382, + [389] = 382, + [390] = 378, + [391] = 382, + [392] = 392, + [393] = 392, + [394] = 394, + [395] = 395, + [396] = 270, + [397] = 270, + [398] = 80, + [399] = 399, [400] = 400, [401] = 400, - [402] = 402, - [403] = 403, - [404] = 273, - [405] = 273, - [406] = 80, - [407] = 407, + [402] = 400, + [403] = 400, + [404] = 400, + [405] = 400, + [406] = 400, + [407] = 400, [408] = 408, - [409] = 408, - [410] = 408, - [411] = 408, - [412] = 408, - [413] = 408, - [414] = 408, - [415] = 408, + [409] = 270, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, [416] = 416, - [417] = 273, + [417] = 417, [418] = 418, [419] = 419, [420] = 420, [421] = 421, - [422] = 422, + [422] = 380, [423] = 423, [424] = 424, [425] = 425, @@ -3685,204 +3671,204 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [427] = 427, [428] = 428, [429] = 429, - [430] = 388, - [431] = 431, + [430] = 429, + [431] = 426, [432] = 432, - [433] = 433, - [434] = 434, + [433] = 427, + [434] = 428, [435] = 435, - [436] = 436, - [437] = 432, - [438] = 438, - [439] = 436, - [440] = 434, + [436] = 426, + [437] = 427, + [438] = 428, + [439] = 429, + [440] = 440, [441] = 441, - [442] = 432, - [443] = 438, - [444] = 436, - [445] = 434, - [446] = 438, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 444, + [446] = 446, [447] = 447, [448] = 448, - [449] = 449, + [449] = 444, [450] = 450, [451] = 451, [452] = 452, - [453] = 453, - [454] = 454, + [453] = 452, + [454] = 451, [455] = 455, - [456] = 452, - [457] = 452, + [456] = 456, + [457] = 457, [458] = 458, [459] = 459, [460] = 460, - [461] = 460, - [462] = 459, + [461] = 461, + [462] = 456, [463] = 463, - [464] = 464, + [464] = 458, [465] = 465, - [466] = 466, + [466] = 456, [467] = 467, - [468] = 468, - [469] = 466, - [470] = 466, - [471] = 464, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, + [468] = 458, + [469] = 469, + [470] = 470, + [471] = 470, + [472] = 456, + [473] = 456, + [474] = 470, + [475] = 458, [476] = 476, [477] = 477, - [478] = 476, - [479] = 466, - [480] = 464, - [481] = 476, - [482] = 466, - [483] = 464, - [484] = 476, + [478] = 470, + [479] = 479, + [480] = 470, + [481] = 481, + [482] = 470, + [483] = 456, + [484] = 484, [485] = 485, [486] = 486, [487] = 487, - [488] = 466, - [489] = 476, - [490] = 476, - [491] = 491, + [488] = 484, + [489] = 489, + [490] = 490, + [491] = 484, [492] = 492, - [493] = 493, + [493] = 484, [494] = 494, [495] = 495, [496] = 496, [497] = 497, [498] = 498, - [499] = 497, + [499] = 499, [500] = 500, [501] = 501, - [502] = 502, - [503] = 497, + [502] = 501, + [503] = 503, [504] = 504, [505] = 505, - [506] = 497, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, + [506] = 506, + [507] = 505, + [508] = 505, + [509] = 501, + [510] = 504, [511] = 511, [512] = 512, [513] = 513, [514] = 514, - [515] = 508, - [516] = 510, - [517] = 517, + [515] = 515, + [516] = 516, + [517] = 499, [518] = 518, [519] = 519, - [520] = 512, + [520] = 506, [521] = 521, - [522] = 514, - [523] = 513, - [524] = 518, - [525] = 519, - [526] = 526, - [527] = 527, + [522] = 522, + [523] = 523, + [524] = 506, + [525] = 501, + [526] = 521, + [527] = 410, [528] = 528, - [529] = 529, - [530] = 509, + [529] = 505, + [530] = 530, [531] = 531, [532] = 532, - [533] = 531, + [533] = 512, [534] = 534, - [535] = 531, - [536] = 510, - [537] = 513, - [538] = 518, - [539] = 539, - [540] = 540, - [541] = 508, + [535] = 500, + [536] = 536, + [537] = 521, + [538] = 536, + [539] = 513, + [540] = 534, + [541] = 532, [542] = 542, - [543] = 543, - [544] = 526, + [543] = 514, + [544] = 515, [545] = 545, [546] = 546, [547] = 547, - [548] = 519, - [549] = 545, - [550] = 416, - [551] = 526, - [552] = 547, - [553] = 527, - [554] = 514, - [555] = 528, - [556] = 529, - [557] = 557, - [558] = 513, - [559] = 510, - [560] = 543, - [561] = 545, - [562] = 546, - [563] = 527, - [564] = 547, - [565] = 529, - [566] = 566, - [567] = 567, - [568] = 509, - [569] = 528, - [570] = 514, - [571] = 513, - [572] = 532, - [573] = 509, - [574] = 518, - [575] = 543, - [576] = 566, - [577] = 514, - [578] = 513, - [579] = 518, - [580] = 519, - [581] = 526, - [582] = 527, - [583] = 528, - [584] = 529, - [585] = 509, - [586] = 531, - [587] = 587, - [588] = 531, - [589] = 510, - [590] = 508, - [591] = 514, - [592] = 518, - [593] = 519, - [594] = 526, - [595] = 527, - [596] = 528, - [597] = 529, - [598] = 509, - [599] = 531, - [600] = 510, - [601] = 508, - [602] = 543, - [603] = 545, - [604] = 546, - [605] = 547, - [606] = 529, - [607] = 545, - [608] = 546, - [609] = 532, - [610] = 519, - [611] = 546, - [612] = 612, - [613] = 532, - [614] = 547, - [615] = 532, - [616] = 543, - [617] = 587, - [618] = 545, - [619] = 546, - [620] = 547, - [621] = 526, - [622] = 527, - [623] = 528, - [624] = 508, - [625] = 543, - [626] = 566, - [627] = 587, + [548] = 513, + [549] = 516, + [550] = 532, + [551] = 519, + [552] = 534, + [553] = 500, + [554] = 554, + [555] = 554, + [556] = 536, + [557] = 534, + [558] = 500, + [559] = 559, + [560] = 512, + [561] = 513, + [562] = 562, + [563] = 536, + [564] = 522, + [565] = 514, + [566] = 559, + [567] = 512, + [568] = 513, + [569] = 514, + [570] = 515, + [571] = 516, + [572] = 499, + [573] = 518, + [574] = 519, + [575] = 506, + [576] = 521, + [577] = 499, + [578] = 501, + [579] = 505, + [580] = 512, + [581] = 514, + [582] = 515, + [583] = 516, + [584] = 499, + [585] = 518, + [586] = 519, + [587] = 506, + [588] = 521, + [589] = 501, + [590] = 505, + [591] = 532, + [592] = 534, + [593] = 500, + [594] = 536, + [595] = 518, + [596] = 559, + [597] = 522, + [598] = 515, + [599] = 522, + [600] = 512, + [601] = 522, + [602] = 513, + [603] = 514, + [604] = 532, + [605] = 554, + [606] = 534, + [607] = 500, + [608] = 516, + [609] = 536, + [610] = 515, + [611] = 516, + [612] = 499, + [613] = 518, + [614] = 518, + [615] = 519, + [616] = 506, + [617] = 521, + [618] = 519, + [619] = 532, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 627, [628] = 628, [629] = 629, [630] = 630, @@ -3896,37 +3882,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [638] = 638, [639] = 639, [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, + [641] = 640, + [642] = 639, + [643] = 639, + [644] = 640, + [645] = 640, + [646] = 639, [647] = 647, [648] = 648, [649] = 649, - [650] = 647, + [650] = 650, [651] = 651, - [652] = 649, - [653] = 649, - [654] = 647, - [655] = 648, - [656] = 651, - [657] = 647, - [658] = 649, - [659] = 648, - [660] = 651, + [652] = 651, + [653] = 653, + [654] = 654, + [655] = 654, + [656] = 395, + [657] = 651, + [658] = 654, + [659] = 394, + [660] = 654, [661] = 651, - [662] = 648, + [662] = 662, [663] = 663, - [664] = 664, + [664] = 653, [665] = 665, [666] = 666, [667] = 667, - [668] = 402, + [668] = 668, [669] = 669, - [670] = 403, - [671] = 669, + [670] = 670, + [671] = 671, [672] = 672, [673] = 673, [674] = 674, @@ -3938,21 +3924,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [680] = 680, [681] = 681, [682] = 682, - [683] = 675, + [683] = 666, [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, + [685] = 676, + [686] = 666, + [687] = 676, + [688] = 666, + [689] = 676, [690] = 690, - [691] = 674, + [691] = 691, [692] = 692, [693] = 693, - [694] = 674, - [695] = 675, - [696] = 675, - [697] = 674, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, [698] = 698, [699] = 699, [700] = 700, @@ -3962,30 +3948,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [704] = 704, [705] = 705, [706] = 706, - [707] = 707, + [707] = 694, [708] = 708, [709] = 709, [710] = 710, - [711] = 711, + [711] = 700, [712] = 712, - [713] = 713, - [714] = 673, - [715] = 715, - [716] = 699, - [717] = 717, - [718] = 631, - [719] = 631, - [720] = 703, + [713] = 663, + [714] = 625, + [715] = 625, + [716] = 716, + [717] = 394, + [718] = 395, + [719] = 719, + [720] = 720, [721] = 721, [722] = 722, [723] = 723, [724] = 724, [725] = 725, - [726] = 402, + [726] = 726, [727] = 727, [728] = 728, [729] = 729, - [730] = 403, + [730] = 730, [731] = 731, [732] = 732, [733] = 733, @@ -4038,321 +4024,321 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [780] = 780, [781] = 781, [782] = 782, - [783] = 783, + [783] = 778, [784] = 784, [785] = 785, - [786] = 786, - [787] = 787, + [786] = 778, + [787] = 142, [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 788, - [793] = 793, + [789] = 782, + [790] = 778, + [791] = 143, + [792] = 121, + [793] = 778, [794] = 794, - [795] = 795, - [796] = 788, - [797] = 797, - [798] = 793, - [799] = 788, - [800] = 793, - [801] = 801, - [802] = 131, - [803] = 142, - [804] = 788, - [805] = 145, - [806] = 147, - [807] = 121, - [808] = 133, + [795] = 125, + [796] = 782, + [797] = 126, + [798] = 133, + [799] = 799, + [800] = 800, + [801] = 782, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, [809] = 809, [810] = 810, [811] = 811, - [812] = 793, + [812] = 812, [813] = 813, [814] = 814, - [815] = 815, - [816] = 816, + [815] = 806, + [816] = 809, [817] = 817, - [818] = 818, - [819] = 819, + [818] = 810, + [819] = 811, [820] = 820, [821] = 821, - [822] = 822, - [823] = 823, - [824] = 821, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 827, - [829] = 815, - [830] = 816, - [831] = 820, - [832] = 813, - [833] = 817, - [834] = 834, - [835] = 819, - [836] = 826, - [837] = 825, - [838] = 834, - [839] = 839, - [840] = 631, - [841] = 823, - [842] = 839, - [843] = 682, - [844] = 844, - [845] = 682, - [846] = 642, - [847] = 797, - [848] = 783, - [849] = 638, - [850] = 850, - [851] = 147, - [852] = 121, - [853] = 853, - [854] = 810, - [855] = 811, - [856] = 784, - [857] = 133, - [858] = 809, - [859] = 131, - [860] = 786, - [861] = 795, - [862] = 794, - [863] = 131, - [864] = 787, - [865] = 142, - [866] = 145, - [867] = 795, - [868] = 850, - [869] = 850, - [870] = 809, - [871] = 121, - [872] = 785, - [873] = 786, - [874] = 133, - [875] = 785, - [876] = 876, - [877] = 810, - [878] = 850, - [879] = 879, - [880] = 787, - [881] = 789, - [882] = 811, - [883] = 790, - [884] = 791, - [885] = 794, - [886] = 142, - [887] = 789, - [888] = 784, - [889] = 145, - [890] = 790, - [891] = 791, - [892] = 147, - [893] = 893, - [894] = 894, - [895] = 702, - [896] = 700, - [897] = 897, - [898] = 823, - [899] = 821, - [900] = 825, - [901] = 826, - [902] = 839, - [903] = 827, - [904] = 815, - [905] = 816, - [906] = 820, - [907] = 813, + [822] = 812, + [823] = 807, + [824] = 824, + [825] = 817, + [826] = 805, + [827] = 625, + [828] = 828, + [829] = 813, + [830] = 830, + [831] = 808, + [832] = 828, + [833] = 830, + [834] = 814, + [835] = 675, + [836] = 836, + [837] = 675, + [838] = 788, + [839] = 636, + [840] = 784, + [841] = 627, + [842] = 777, + [843] = 775, + [844] = 779, + [845] = 780, + [846] = 781, + [847] = 800, + [848] = 848, + [849] = 802, + [850] = 803, + [851] = 776, + [852] = 777, + [853] = 804, + [854] = 785, + [855] = 799, + [856] = 775, + [857] = 779, + [858] = 780, + [859] = 781, + [860] = 142, + [861] = 143, + [862] = 802, + [863] = 125, + [864] = 126, + [865] = 133, + [866] = 142, + [867] = 143, + [868] = 121, + [869] = 125, + [870] = 126, + [871] = 133, + [872] = 800, + [873] = 873, + [874] = 874, + [875] = 804, + [876] = 785, + [877] = 873, + [878] = 799, + [879] = 803, + [880] = 776, + [881] = 873, + [882] = 873, + [883] = 883, + [884] = 121, + [885] = 702, + [886] = 886, + [887] = 887, + [888] = 697, + [889] = 699, + [890] = 890, + [891] = 828, + [892] = 830, + [893] = 805, + [894] = 807, + [895] = 808, + [896] = 809, + [897] = 810, + [898] = 811, + [899] = 812, + [900] = 813, + [901] = 814, + [902] = 817, + [903] = 903, + [904] = 904, + [905] = 691, + [906] = 692, + [907] = 701, [908] = 908, - [909] = 817, - [910] = 834, - [911] = 819, - [912] = 708, - [913] = 707, - [914] = 704, - [915] = 705, - [916] = 916, - [917] = 917, - [918] = 86, - [919] = 94, - [920] = 100, - [921] = 101, - [922] = 102, - [923] = 923, - [924] = 105, - [925] = 706, - [926] = 87, - [927] = 709, - [928] = 91, - [929] = 92, - [930] = 93, - [931] = 701, - [932] = 682, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 92, + [909] = 806, + [910] = 693, + [911] = 675, + [912] = 912, + [913] = 102, + [914] = 95, + [915] = 103, + [916] = 698, + [917] = 696, + [918] = 110, + [919] = 101, + [920] = 111, + [921] = 94, + [922] = 112, + [923] = 113, + [924] = 924, + [925] = 93, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 111, + [930] = 112, + [931] = 113, + [932] = 101, + [933] = 103, + [934] = 94, + [935] = 95, + [936] = 110, + [937] = 102, [938] = 93, - [939] = 94, + [939] = 939, [940] = 940, - [941] = 100, - [942] = 101, - [943] = 102, - [944] = 105, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, [945] = 945, - [946] = 946, - [947] = 87, - [948] = 91, - [949] = 86, + [946] = 927, + [947] = 926, + [948] = 948, + [949] = 949, [950] = 950, [951] = 951, [952] = 952, - [953] = 934, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 936, - [958] = 955, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 954, - [964] = 956, - [965] = 965, - [966] = 960, - [967] = 816, - [968] = 968, - [969] = 819, - [970] = 823, - [971] = 821, - [972] = 825, - [973] = 826, - [974] = 839, - [975] = 827, - [976] = 815, - [977] = 816, - [978] = 820, - [979] = 813, + [953] = 953, + [954] = 950, + [955] = 952, + [956] = 948, + [957] = 949, + [958] = 958, + [959] = 805, + [960] = 810, + [961] = 812, + [962] = 813, + [963] = 828, + [964] = 830, + [965] = 805, + [966] = 806, + [967] = 807, + [968] = 808, + [969] = 809, + [970] = 810, + [971] = 811, + [972] = 812, + [973] = 813, + [974] = 814, + [975] = 830, + [976] = 806, + [977] = 807, + [978] = 814, + [979] = 808, [980] = 817, - [981] = 834, - [982] = 834, - [983] = 821, - [984] = 825, - [985] = 826, - [986] = 839, - [987] = 819, - [988] = 827, - [989] = 815, - [990] = 823, - [991] = 820, - [992] = 813, - [993] = 817, - [994] = 994, - [995] = 994, + [981] = 817, + [982] = 828, + [983] = 983, + [984] = 809, + [985] = 811, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 993, + [995] = 995, [996] = 996, - [997] = 997, + [997] = 992, [998] = 998, - [999] = 999, + [999] = 993, [1000] = 1000, [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, + [1002] = 992, + [1003] = 993, + [1004] = 992, [1005] = 1005, - [1006] = 994, - [1007] = 1007, - [1008] = 1001, - [1009] = 1001, - [1010] = 994, - [1011] = 1001, + [1006] = 1006, + [1007] = 1006, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 836, [1012] = 1012, [1013] = 1013, - [1014] = 1014, - [1015] = 1014, + [1014] = 824, + [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 1018, + [1018] = 1017, [1019] = 1019, - [1020] = 818, - [1021] = 1021, - [1022] = 844, + [1020] = 813, + [1021] = 874, + [1022] = 1022, [1023] = 1023, - [1024] = 1024, + [1024] = 814, [1025] = 1025, - [1026] = 1024, + [1026] = 704, [1027] = 1027, [1028] = 1028, - [1029] = 823, - [1030] = 821, - [1031] = 825, - [1032] = 826, - [1033] = 839, - [1034] = 827, - [1035] = 815, - [1036] = 816, - [1037] = 820, - [1038] = 813, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1031, + [1034] = 1034, + [1035] = 1028, + [1036] = 817, + [1037] = 1037, + [1038] = 1038, [1039] = 1039, - [1040] = 817, - [1041] = 1039, - [1042] = 834, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, - [1044] = 879, - [1045] = 1045, + [1044] = 712, + [1045] = 1019, [1046] = 1046, - [1047] = 1047, + [1047] = 1019, [1048] = 1048, [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1049, - [1053] = 1053, - [1054] = 1054, - [1055] = 1050, - [1056] = 1050, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 819, - [1061] = 1061, - [1062] = 876, - [1063] = 722, - [1064] = 1064, - [1065] = 1039, - [1066] = 1066, - [1067] = 968, - [1068] = 1068, - [1069] = 853, - [1070] = 1039, - [1071] = 1049, - [1072] = 1053, - [1073] = 1039, - [1074] = 1049, - [1075] = 1050, - [1076] = 713, + [1050] = 848, + [1051] = 828, + [1052] = 1029, + [1053] = 983, + [1054] = 830, + [1055] = 1028, + [1056] = 1028, + [1057] = 1029, + [1058] = 805, + [1059] = 806, + [1060] = 807, + [1061] = 808, + [1062] = 809, + [1063] = 810, + [1064] = 811, + [1065] = 1019, + [1066] = 812, + [1067] = 1019, + [1068] = 883, + [1069] = 1019, + [1070] = 1029, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, + [1076] = 1072, [1077] = 1077, - [1078] = 1039, + [1078] = 1078, [1079] = 1079, [1080] = 1080, [1081] = 1081, - [1082] = 1082, - [1083] = 1079, - [1084] = 1084, - [1085] = 1085, + [1082] = 1072, + [1083] = 1083, + [1084] = 1080, + [1085] = 1072, [1086] = 1086, [1087] = 1087, - [1088] = 1088, + [1088] = 1072, [1089] = 1089, - [1090] = 1079, + [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, - [1097] = 1079, + [1097] = 1097, [1098] = 1098, [1099] = 1099, [1100] = 1100, @@ -4362,186 +4348,186 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 1105, - [1108] = 1079, - [1109] = 1109, + [1107] = 1102, + [1108] = 1108, + [1109] = 1104, [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1111, - [1114] = 1114, - [1115] = 1114, + [1111] = 1105, + [1112] = 712, + [1113] = 750, + [1114] = 704, + [1115] = 1115, [1116] = 1116, - [1117] = 1112, + [1117] = 1117, [1118] = 1118, [1119] = 1119, - [1120] = 713, - [1121] = 749, - [1122] = 722, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, + [1120] = 1120, + [1121] = 1121, + [1122] = 764, + [1123] = 767, + [1124] = 741, + [1125] = 765, + [1126] = 742, + [1127] = 743, [1128] = 1128, - [1129] = 768, - [1130] = 750, - [1131] = 751, - [1132] = 752, - [1133] = 753, - [1134] = 754, - [1135] = 747, - [1136] = 1136, - [1137] = 1136, - [1138] = 1136, - [1139] = 1136, - [1140] = 770, - [1141] = 771, - [1142] = 755, - [1143] = 749, - [1144] = 766, - [1145] = 1145, - [1146] = 745, - [1147] = 756, + [1129] = 744, + [1130] = 745, + [1131] = 736, + [1132] = 1128, + [1133] = 1128, + [1134] = 762, + [1135] = 737, + [1136] = 750, + [1137] = 754, + [1138] = 739, + [1139] = 1128, + [1140] = 1140, + [1141] = 1121, + [1142] = 1140, + [1143] = 1143, + [1144] = 1143, + [1145] = 1143, + [1146] = 1146, + [1147] = 1140, [1148] = 1148, [1149] = 1149, - [1150] = 1150, - [1151] = 1150, + [1150] = 1146, + [1151] = 1140, [1152] = 1149, - [1153] = 1148, - [1154] = 1149, - [1155] = 818, - [1156] = 1156, - [1157] = 1150, - [1158] = 1149, - [1159] = 1149, - [1160] = 1149, - [1161] = 1161, - [1162] = 1148, - [1163] = 1161, - [1164] = 1161, - [1165] = 1148, - [1166] = 1145, + [1153] = 1149, + [1154] = 1143, + [1155] = 1140, + [1156] = 1140, + [1157] = 1146, + [1158] = 824, + [1159] = 1159, + [1160] = 1160, + [1161] = 1159, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, [1167] = 1167, - [1168] = 684, + [1168] = 1168, [1169] = 1169, - [1170] = 1170, - [1171] = 1171, + [1170] = 1168, + [1171] = 1169, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1178, + [1178] = 1164, [1179] = 1179, - [1180] = 1180, + [1180] = 1160, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1184, + [1184] = 1183, [1185] = 1185, [1186] = 1186, - [1187] = 1187, - [1188] = 1186, - [1189] = 1189, + [1187] = 1174, + [1188] = 1188, + [1189] = 1173, [1190] = 1190, - [1191] = 1177, - [1192] = 1192, + [1191] = 1191, + [1192] = 1190, [1193] = 1193, - [1194] = 1194, - [1195] = 1192, - [1196] = 1183, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1167, - [1202] = 1202, - [1203] = 1173, - [1204] = 1200, - [1205] = 1205, - [1206] = 1194, - [1207] = 1197, + [1194] = 1163, + [1195] = 1195, + [1196] = 1196, + [1197] = 1159, + [1198] = 1188, + [1199] = 1186, + [1200] = 1186, + [1201] = 1201, + [1202] = 1162, + [1203] = 1203, + [1204] = 1204, + [1205] = 1186, + [1206] = 1172, + [1207] = 1207, [1208] = 1208, - [1209] = 1198, - [1210] = 1200, - [1211] = 1194, - [1212] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 690, [1213] = 1213, [1214] = 1214, - [1215] = 1215, - [1216] = 1170, - [1217] = 1181, - [1218] = 1218, - [1219] = 1214, - [1220] = 1220, - [1221] = 1194, - [1222] = 1222, - [1223] = 1169, - [1224] = 1171, - [1225] = 1178, - [1226] = 1182, - [1227] = 1184, - [1228] = 1187, - [1229] = 1189, - [1230] = 1202, - [1231] = 1205, - [1232] = 1232, - [1233] = 1222, - [1234] = 1218, + [1215] = 1181, + [1216] = 1196, + [1217] = 1201, + [1218] = 1207, + [1219] = 1209, + [1220] = 1210, + [1221] = 1211, + [1222] = 1191, + [1223] = 1204, + [1224] = 1179, + [1225] = 1225, + [1226] = 1226, + [1227] = 1193, + [1228] = 1228, + [1229] = 1229, + [1230] = 991, + [1231] = 1231, + [1232] = 1214, + [1233] = 1165, + [1234] = 1234, [1235] = 1235, - [1236] = 1176, - [1237] = 1237, - [1238] = 1220, - [1239] = 1239, - [1240] = 1012, - [1241] = 1241, - [1242] = 1242, - [1243] = 684, - [1244] = 1004, - [1245] = 1190, - [1246] = 1246, - [1247] = 1000, - [1248] = 1237, - [1249] = 999, - [1250] = 1250, - [1251] = 1251, - [1252] = 1246, + [1236] = 690, + [1237] = 986, + [1238] = 1208, + [1239] = 1001, + [1240] = 1240, + [1241] = 1234, + [1242] = 998, + [1243] = 1240, + [1244] = 1244, + [1245] = 1245, + [1246] = 1228, + [1247] = 1234, + [1248] = 1240, + [1249] = 1228, + [1250] = 1234, + [1251] = 1240, + [1252] = 1203, [1253] = 1253, - [1254] = 1237, - [1255] = 1246, - [1256] = 1213, - [1257] = 1253, - [1258] = 1237, - [1259] = 1246, - [1260] = 1253, - [1261] = 1261, - [1262] = 1261, + [1254] = 1254, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 1253, + [1259] = 1253, + [1260] = 1260, + [1261] = 1253, + [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, - [1266] = 1266, - [1267] = 1261, + [1266] = 1265, + [1267] = 1267, [1268] = 1268, - [1269] = 1261, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, + [1269] = 1269, + [1270] = 1267, + [1271] = 1267, + [1272] = 1267, + [1273] = 1265, + [1274] = 1265, [1275] = 1275, - [1276] = 1274, - [1277] = 1274, - [1278] = 1274, - [1279] = 1271, - [1280] = 1271, - [1281] = 1281, - [1282] = 1271, + [1276] = 1276, + [1277] = 1277, + [1278] = 1275, + [1279] = 1275, + [1280] = 1280, + [1281] = 1254, + [1282] = 1282, [1283] = 1283, - [1284] = 1283, + [1284] = 1284, [1285] = 1285, - [1286] = 1283, + [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, @@ -4551,9 +4537,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1293] = 1293, [1294] = 1294, [1295] = 1295, - [1296] = 1263, + [1296] = 1296, [1297] = 1297, - [1298] = 1298, + [1298] = 1295, [1299] = 1299, [1300] = 1300, [1301] = 1301, @@ -4562,39 +4548,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1304] = 1304, [1305] = 1305, [1306] = 1306, - [1307] = 1307, + [1307] = 1295, [1308] = 1308, [1309] = 1309, - [1310] = 1306, - [1311] = 1311, - [1312] = 1307, + [1310] = 1302, + [1311] = 1295, + [1312] = 1302, [1313] = 1313, - [1314] = 1314, - [1315] = 1315, - [1316] = 1306, + [1314] = 1295, + [1315] = 1295, + [1316] = 1302, [1317] = 1317, - [1318] = 1307, - [1319] = 1306, - [1320] = 1307, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, [1321] = 1321, - [1322] = 1307, - [1323] = 1307, + [1322] = 1322, + [1323] = 1323, [1324] = 1324, - [1325] = 1325, + [1325] = 1268, [1326] = 1326, [1327] = 1327, [1328] = 1328, [1329] = 1329, [1330] = 1330, - [1331] = 1331, + [1331] = 1264, [1332] = 1332, - [1333] = 1273, + [1333] = 1333, [1334] = 1334, [1335] = 1335, - [1336] = 1336, + [1336] = 1262, [1337] = 1337, [1338] = 1338, - [1339] = 1281, + [1339] = 1339, [1340] = 1340, [1341] = 1341, [1342] = 1342, @@ -4603,127 +4589,127 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1345] = 1345, [1346] = 1346, [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1275, + [1348] = 1344, + [1349] = 1344, + [1350] = 1344, + [1351] = 1351, [1352] = 1352, [1353] = 1353, - [1354] = 1349, - [1355] = 1349, + [1354] = 1354, + [1355] = 1294, [1356] = 1356, [1357] = 1357, - [1358] = 1349, - [1359] = 1359, + [1358] = 1358, + [1359] = 1292, [1360] = 1360, - [1361] = 1361, - [1362] = 1362, + [1361] = 1356, + [1362] = 1356, [1363] = 1363, - [1364] = 1364, + [1364] = 1356, [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 1302, - [1369] = 1299, - [1370] = 1301, - [1371] = 1300, + [1366] = 1291, + [1367] = 1293, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, [1372] = 1372, - [1373] = 1365, - [1374] = 1365, + [1373] = 1373, + [1374] = 1374, [1375] = 1375, - [1376] = 1365, + [1376] = 1372, [1377] = 1377, [1378] = 1378, - [1379] = 1379, - [1380] = 1380, + [1379] = 1371, + [1380] = 1372, [1381] = 1381, [1382] = 1382, - [1383] = 1383, - [1384] = 1384, + [1383] = 1373, + [1384] = 1371, [1385] = 1385, [1386] = 1386, - [1387] = 1379, - [1388] = 1388, + [1387] = 1372, + [1388] = 1373, [1389] = 1389, - [1390] = 1379, + [1390] = 1371, [1391] = 1391, - [1392] = 1392, - [1393] = 1381, - [1394] = 1378, + [1392] = 1373, + [1393] = 1393, + [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 1379, + [1398] = 1398, [1399] = 1399, - [1400] = 1381, - [1401] = 1381, - [1402] = 1378, + [1400] = 1400, + [1401] = 1401, + [1402] = 1402, [1403] = 1403, - [1404] = 1378, - [1405] = 1405, - [1406] = 1406, + [1404] = 1404, + [1405] = 1401, + [1406] = 1403, [1407] = 1407, [1408] = 1408, [1409] = 1409, [1410] = 1410, - [1411] = 1407, - [1412] = 1408, - [1413] = 1413, + [1411] = 1411, + [1412] = 1399, + [1413] = 1403, [1414] = 1414, [1415] = 1415, - [1416] = 1408, + [1416] = 1399, [1417] = 1417, - [1418] = 1418, - [1419] = 1419, + [1418] = 1401, + [1419] = 1401, [1420] = 1420, [1421] = 1421, - [1422] = 1406, + [1422] = 1403, [1423] = 1423, [1424] = 1424, - [1425] = 1407, + [1425] = 1425, [1426] = 1426, - [1427] = 1427, - [1428] = 1407, + [1427] = 1399, + [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, [1432] = 1432, - [1433] = 1406, - [1434] = 1406, - [1435] = 1408, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, [1436] = 1436, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, + [1438] = 1434, + [1439] = 1437, + [1440] = 1434, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1444, + [1444] = 1434, [1445] = 1445, - [1446] = 1445, - [1447] = 1447, - [1448] = 1440, + [1446] = 1446, + [1447] = 1437, + [1448] = 1434, [1449] = 1449, - [1450] = 1450, + [1450] = 1434, [1451] = 1451, [1452] = 1452, - [1453] = 1445, + [1453] = 1453, [1454] = 1454, - [1455] = 1440, + [1455] = 1437, [1456] = 1456, - [1457] = 1445, - [1458] = 1440, - [1459] = 1445, - [1460] = 1440, + [1457] = 1457, + [1458] = 1437, + [1459] = 1459, + [1460] = 1460, [1461] = 1461, - [1462] = 1440, + [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 1465, + [1465] = 1437, [1466] = 1466, [1467] = 1467, - [1468] = 1445, + [1468] = 1468, [1469] = 1469, [1470] = 1470, [1471] = 1471, @@ -4752,277 +4738,277 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1497, - [1498] = 1498, + [1497] = 1492, + [1498] = 1492, [1499] = 1499, [1500] = 1500, - [1501] = 1499, - [1502] = 1502, - [1503] = 1499, - [1504] = 1502, - [1505] = 1502, + [1501] = 1495, + [1502] = 1493, + [1503] = 1496, + [1504] = 1504, + [1505] = 1492, [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 1502, - [1510] = 1499, + [1507] = 1495, + [1508] = 1496, + [1509] = 1509, + [1510] = 1493, [1511] = 1511, [1512] = 1512, - [1513] = 1513, - [1514] = 1500, - [1515] = 1515, + [1513] = 1496, + [1514] = 1514, + [1515] = 1493, [1516] = 1516, - [1517] = 1517, + [1517] = 1495, [1518] = 1518, - [1519] = 1508, - [1520] = 1500, + [1519] = 1519, + [1520] = 1520, [1521] = 1521, - [1522] = 1508, - [1523] = 1508, + [1522] = 1519, + [1523] = 1523, [1524] = 1524, - [1525] = 1500, + [1525] = 1524, [1526] = 1526, [1527] = 1527, - [1528] = 1528, + [1528] = 1524, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1532, + [1532] = 1531, [1533] = 1533, - [1534] = 1534, + [1534] = 1524, [1535] = 1535, - [1536] = 1536, + [1536] = 1521, [1537] = 1537, - [1538] = 1538, + [1538] = 1520, [1539] = 1539, - [1540] = 1537, - [1541] = 1528, - [1542] = 1539, - [1543] = 1533, - [1544] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1542, + [1544] = 1524, [1545] = 1545, - [1546] = 1539, - [1547] = 1547, - [1548] = 1539, + [1546] = 1546, + [1547] = 1520, + [1548] = 1542, [1549] = 1549, - [1550] = 1550, + [1550] = 1542, [1551] = 1551, [1552] = 1552, - [1553] = 1527, + [1553] = 1553, [1554] = 1554, [1555] = 1555, - [1556] = 1528, - [1557] = 1557, - [1558] = 1537, - [1559] = 1528, - [1560] = 1528, - [1561] = 1561, - [1562] = 1528, + [1556] = 1542, + [1557] = 1531, + [1558] = 1524, + [1559] = 1524, + [1560] = 1560, + [1561] = 1521, + [1562] = 1519, [1563] = 1563, - [1564] = 1527, + [1564] = 1564, [1565] = 1565, [1566] = 1566, - [1567] = 1528, - [1568] = 1533, - [1569] = 1554, - [1570] = 1554, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 1574, + [1574] = 1570, [1575] = 1575, [1576] = 1576, [1577] = 1577, [1578] = 1578, [1579] = 1579, - [1580] = 1580, + [1580] = 1579, [1581] = 1581, [1582] = 1582, [1583] = 1583, [1584] = 1584, - [1585] = 1585, + [1585] = 1570, [1586] = 1586, [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1583, + [1590] = 1590, [1591] = 1591, - [1592] = 1592, - [1593] = 1593, + [1592] = 1575, + [1593] = 1578, [1594] = 1594, [1595] = 1595, - [1596] = 1581, - [1597] = 1586, + [1596] = 1596, + [1597] = 1597, [1598] = 1598, - [1599] = 1599, - [1600] = 1571, + [1599] = 1567, + [1600] = 1600, [1601] = 1601, - [1602] = 1602, + [1602] = 1567, [1603] = 1603, - [1604] = 1582, - [1605] = 1605, - [1606] = 1606, + [1604] = 1579, + [1605] = 1575, + [1606] = 1575, [1607] = 1607, - [1608] = 1608, - [1609] = 1609, + [1608] = 1581, + [1609] = 1582, [1610] = 1610, - [1611] = 1611, + [1611] = 1583, [1612] = 1612, - [1613] = 1601, - [1614] = 1578, - [1615] = 1602, - [1616] = 1616, - [1617] = 1572, - [1618] = 1571, - [1619] = 1582, - [1620] = 1586, - [1621] = 1592, - [1622] = 1606, - [1623] = 1592, - [1624] = 1593, - [1625] = 1594, - [1626] = 1626, - [1627] = 1601, - [1628] = 1628, - [1629] = 1571, - [1630] = 1601, + [1613] = 1581, + [1614] = 1589, + [1615] = 1590, + [1616] = 1591, + [1617] = 1582, + [1618] = 1618, + [1619] = 1583, + [1620] = 1595, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1581, + [1625] = 1582, + [1626] = 1583, + [1627] = 1589, + [1628] = 1590, + [1629] = 1591, + [1630] = 1595, [1631] = 1631, - [1632] = 1593, - [1633] = 1606, - [1634] = 1606, - [1635] = 1586, - [1636] = 1636, - [1637] = 1592, - [1638] = 1593, - [1639] = 1594, - [1640] = 1571, - [1641] = 1601, - [1642] = 1602, - [1643] = 1606, - [1644] = 1586, - [1645] = 1592, - [1646] = 1593, - [1647] = 1594, - [1648] = 1571, - [1649] = 1601, - [1650] = 1602, - [1651] = 1606, - [1652] = 1652, - [1653] = 1594, - [1654] = 1573, + [1632] = 1575, + [1633] = 1581, + [1634] = 1582, + [1635] = 1583, + [1636] = 1589, + [1637] = 1590, + [1638] = 1591, + [1639] = 1595, + [1640] = 1420, + [1641] = 1618, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1589, + [1651] = 1590, + [1652] = 1591, + [1653] = 1653, + [1654] = 1572, [1655] = 1578, [1656] = 1656, - [1657] = 1583, - [1658] = 1658, - [1659] = 1592, - [1660] = 1593, - [1661] = 1661, - [1662] = 1581, - [1663] = 1602, - [1664] = 1594, - [1665] = 1652, - [1666] = 1666, - [1667] = 1667, + [1657] = 1657, + [1658] = 1595, + [1659] = 1618, + [1660] = 1660, + [1661] = 1581, + [1662] = 1589, + [1663] = 1590, + [1664] = 1582, + [1665] = 1583, + [1666] = 1564, + [1667] = 1621, [1668] = 1668, - [1669] = 1658, + [1669] = 1669, [1670] = 1670, [1671] = 1671, [1672] = 1672, - [1673] = 1586, - [1674] = 1674, - [1675] = 1417, + [1673] = 1595, + [1674] = 1564, + [1675] = 1567, [1676] = 1676, - [1677] = 1677, - [1678] = 1678, - [1679] = 1652, - [1680] = 1680, - [1681] = 1573, + [1677] = 1591, + [1678] = 1575, + [1679] = 1679, + [1680] = 1679, + [1681] = 1681, [1682] = 1682, [1683] = 1683, - [1684] = 1578, - [1685] = 1685, - [1686] = 1602, - [1687] = 1687, + [1684] = 1684, + [1685] = 1679, + [1686] = 1686, + [1687] = 1684, [1688] = 1688, [1689] = 1689, [1690] = 1690, - [1691] = 1691, - [1692] = 1692, + [1691] = 1681, + [1692] = 1684, [1693] = 1693, [1694] = 1694, [1695] = 1695, - [1696] = 1696, + [1696] = 1684, [1697] = 1697, [1698] = 1698, - [1699] = 1692, - [1700] = 1692, + [1699] = 1699, + [1700] = 1698, [1701] = 1701, [1702] = 1702, - [1703] = 1690, - [1704] = 1687, - [1705] = 1701, - [1706] = 1690, - [1707] = 1692, - [1708] = 1692, - [1709] = 1690, - [1710] = 1701, - [1711] = 1690, - [1712] = 1692, + [1703] = 1703, + [1704] = 1679, + [1705] = 1684, + [1706] = 1698, + [1707] = 1707, + [1708] = 1690, + [1709] = 1703, + [1710] = 1684, + [1711] = 1711, + [1712] = 1712, [1713] = 1713, [1714] = 1714, - [1715] = 1715, + [1715] = 1679, [1716] = 1716, - [1717] = 1690, - [1718] = 1692, - [1719] = 1694, - [1720] = 1689, + [1717] = 1684, + [1718] = 1718, + [1719] = 1719, + [1720] = 1681, [1721] = 1693, - [1722] = 1702, - [1723] = 1690, - [1724] = 1689, - [1725] = 1697, - [1726] = 1702, + [1722] = 1719, + [1723] = 1679, + [1724] = 1724, + [1725] = 1724, + [1726] = 1726, [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 1701, - [1733] = 1733, + [1728] = 1698, + [1729] = 1714, + [1730] = 1698, + [1731] = 1697, + [1732] = 1732, + [1733] = 1711, [1734] = 1734, - [1735] = 1716, - [1736] = 1702, - [1737] = 1737, - [1738] = 1737, - [1739] = 1687, - [1740] = 1740, - [1741] = 1687, - [1742] = 1689, - [1743] = 1743, - [1744] = 1694, - [1745] = 1689, - [1746] = 1693, - [1747] = 1702, + [1735] = 1735, + [1736] = 1703, + [1737] = 1703, + [1738] = 1719, + [1739] = 1681, + [1740] = 1693, + [1741] = 1711, + [1742] = 1724, + [1743] = 1716, + [1744] = 1744, + [1745] = 1714, + [1746] = 1697, + [1747] = 1690, [1748] = 1748, - [1749] = 1698, - [1750] = 1697, - [1751] = 1734, - [1752] = 1716, - [1753] = 1737, - [1754] = 1693, - [1755] = 1755, - [1756] = 1756, - [1757] = 1698, - [1758] = 1697, - [1759] = 1698, - [1760] = 1716, - [1761] = 1761, - [1762] = 1737, - [1763] = 1737, + [1749] = 1693, + [1750] = 1679, + [1751] = 1724, + [1752] = 1714, + [1753] = 1697, + [1754] = 1754, + [1755] = 1681, + [1756] = 1697, + [1757] = 1711, + [1758] = 1758, + [1759] = 1759, + [1760] = 1703, + [1761] = 1724, + [1762] = 1690, + [1763] = 1763, [1764] = 1764, - [1765] = 1687, - [1766] = 1697, - [1767] = 1701, + [1765] = 1765, + [1766] = 1711, + [1767] = 1767, [1768] = 1768, [1769] = 1769, [1770] = 1770, @@ -5030,254 +5016,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1772] = 1772, [1773] = 1773, [1774] = 1774, - [1775] = 1775, + [1775] = 1768, [1776] = 1776, [1777] = 1777, - [1778] = 1778, + [1778] = 1769, [1779] = 1779, [1780] = 1780, [1781] = 1781, [1782] = 1782, - [1783] = 1783, - [1784] = 1783, - [1785] = 1785, + [1783] = 998, + [1784] = 1780, + [1785] = 1769, [1786] = 1786, [1787] = 1787, - [1788] = 1777, - [1789] = 1789, + [1788] = 1788, + [1789] = 1769, [1790] = 1790, [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1786, - [1795] = 1795, - [1796] = 1796, + [1792] = 1773, + [1793] = 1779, + [1794] = 1794, + [1795] = 986, + [1796] = 991, [1797] = 1797, [1798] = 1780, [1799] = 1799, - [1800] = 1000, - [1801] = 1791, - [1802] = 1012, - [1803] = 1783, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, [1804] = 1804, - [1805] = 1805, - [1806] = 1787, + [1805] = 1769, + [1806] = 1773, [1807] = 1807, - [1808] = 1786, - [1809] = 1780, + [1808] = 1780, + [1809] = 1809, [1810] = 1810, [1811] = 1811, - [1812] = 1786, + [1812] = 1812, [1813] = 1813, - [1814] = 1807, + [1814] = 1814, [1815] = 1815, - [1816] = 1790, - [1817] = 1817, - [1818] = 1777, - [1819] = 1783, - [1820] = 1787, + [1816] = 1774, + [1817] = 1807, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, [1821] = 1821, - [1822] = 1786, - [1823] = 1796, - [1824] = 1824, - [1825] = 1825, - [1826] = 1826, - [1827] = 642, + [1822] = 1822, + [1823] = 1823, + [1824] = 1801, + [1825] = 1779, + [1826] = 1780, + [1827] = 1827, [1828] = 1828, [1829] = 1829, - [1830] = 1783, - [1831] = 1779, - [1832] = 1790, + [1830] = 1830, + [1831] = 1809, + [1832] = 1832, [1833] = 1833, [1834] = 1834, - [1835] = 1835, + [1835] = 1780, [1836] = 1836, [1837] = 1837, - [1838] = 1815, - [1839] = 1790, + [1838] = 1838, + [1839] = 1839, [1840] = 1840, [1841] = 1841, [1842] = 1842, [1843] = 1843, - [1844] = 1786, + [1844] = 1840, [1845] = 1845, - [1846] = 1797, - [1847] = 1780, + [1846] = 1846, + [1847] = 1773, [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 1791, + [1849] = 1807, + [1850] = 1842, + [1851] = 1807, [1852] = 1852, [1853] = 1853, - [1854] = 1807, - [1855] = 1855, - [1856] = 1789, + [1854] = 1845, + [1855] = 1818, + [1856] = 1779, [1857] = 1857, [1858] = 1858, [1859] = 1859, [1860] = 1860, - [1861] = 1817, - [1862] = 1862, + [1861] = 1861, + [1862] = 1768, [1863] = 1863, [1864] = 1864, - [1865] = 1797, + [1865] = 1865, [1866] = 1866, - [1867] = 1799, - [1868] = 638, - [1869] = 1869, - [1870] = 1870, - [1871] = 1795, + [1867] = 1803, + [1868] = 1801, + [1869] = 1852, + [1870] = 1865, + [1871] = 1809, [1872] = 1872, - [1873] = 1863, - [1874] = 1815, - [1875] = 1789, - [1876] = 1813, - [1877] = 1824, - [1878] = 1780, - [1879] = 1817, + [1873] = 1873, + [1874] = 1874, + [1875] = 1875, + [1876] = 1859, + [1877] = 1773, + [1878] = 1818, + [1879] = 1810, [1880] = 1880, - [1881] = 1787, - [1882] = 1783, - [1883] = 1834, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1779, - [1888] = 1790, + [1881] = 1881, + [1882] = 1882, + [1883] = 1857, + [1884] = 1774, + [1885] = 1776, + [1886] = 1827, + [1887] = 1768, + [1888] = 1888, [1889] = 1889, - [1890] = 1890, + [1890] = 1819, [1891] = 1891, - [1892] = 1892, - [1893] = 1813, + [1892] = 1863, + [1893] = 1893, [1894] = 1894, [1895] = 1895, [1896] = 1896, - [1897] = 1897, - [1898] = 1787, + [1897] = 1873, + [1898] = 1898, [1899] = 1899, [1900] = 1900, - [1901] = 1901, - [1902] = 1848, - [1903] = 1903, - [1904] = 1904, + [1901] = 1772, + [1902] = 1810, + [1903] = 1811, + [1904] = 1804, [1905] = 1905, - [1906] = 1858, - [1907] = 1804, - [1908] = 1795, - [1909] = 1848, - [1910] = 1848, - [1911] = 1834, + [1906] = 1857, + [1907] = 1773, + [1908] = 1908, + [1909] = 1909, + [1910] = 1801, + [1911] = 1819, [1912] = 1912, - [1913] = 1858, - [1914] = 1824, - [1915] = 1825, - [1916] = 1825, - [1917] = 1894, - [1918] = 1807, + [1913] = 1913, + [1914] = 627, + [1915] = 1822, + [1916] = 1916, + [1917] = 1803, + [1918] = 1788, [1919] = 1919, [1920] = 1920, - [1921] = 1886, - [1922] = 1922, - [1923] = 1833, - [1924] = 1894, - [1925] = 1925, - [1926] = 1926, + [1921] = 1863, + [1922] = 1861, + [1923] = 1780, + [1924] = 1859, + [1925] = 1840, + [1926] = 1861, [1927] = 1927, - [1928] = 1789, - [1929] = 1886, - [1930] = 1930, + [1928] = 1928, + [1929] = 1837, + [1930] = 1768, [1931] = 1931, - [1932] = 1932, - [1933] = 1863, - [1934] = 1934, - [1935] = 1872, - [1936] = 1919, - [1937] = 1815, - [1938] = 1922, - [1939] = 1795, - [1940] = 1872, - [1941] = 1863, - [1942] = 999, + [1932] = 1840, + [1933] = 1842, + [1934] = 1861, + [1935] = 1810, + [1936] = 1811, + [1937] = 1937, + [1938] = 1881, + [1939] = 1001, + [1940] = 1779, + [1941] = 1819, + [1942] = 1804, [1943] = 1943, - [1944] = 1930, - [1945] = 1824, - [1946] = 1825, - [1947] = 1947, - [1948] = 1783, + [1944] = 1944, + [1945] = 1858, + [1946] = 1946, + [1947] = 636, + [1948] = 1880, [1949] = 1949, - [1950] = 1858, - [1951] = 1833, + [1950] = 1842, + [1951] = 1865, [1952] = 1952, - [1953] = 1953, + [1953] = 1858, [1954] = 1954, - [1955] = 1786, - [1956] = 1956, + [1955] = 1857, + [1956] = 1881, [1957] = 1957, - [1958] = 1797, - [1959] = 1930, - [1960] = 1901, - [1961] = 1961, - [1962] = 1813, - [1963] = 1963, - [1964] = 1964, + [1958] = 1810, + [1959] = 1881, + [1960] = 1811, + [1961] = 1769, + [1962] = 1810, + [1963] = 1810, + [1964] = 1818, [1965] = 1965, - [1966] = 1824, + [1966] = 1891, [1967] = 1967, - [1968] = 1968, - [1969] = 1969, - [1970] = 1824, - [1971] = 1824, - [1972] = 1947, + [1968] = 1880, + [1969] = 1898, + [1970] = 1946, + [1971] = 1971, + [1972] = 1972, [1973] = 1973, [1974] = 1974, - [1975] = 1975, - [1976] = 1919, - [1977] = 1778, - [1978] = 1978, - [1979] = 1834, - [1980] = 1804, + [1975] = 1779, + [1976] = 1852, + [1977] = 1804, + [1978] = 1880, + [1979] = 1979, + [1980] = 1888, [1981] = 1981, - [1982] = 1982, - [1983] = 1790, - [1984] = 1791, + [1982] = 1891, + [1983] = 1858, + [1984] = 1900, [1985] = 1985, [1986] = 1986, - [1987] = 1894, - [1988] = 1842, - [1989] = 1817, - [1990] = 1930, - [1991] = 1991, - [1992] = 1967, - [1993] = 1993, - [1994] = 1789, - [1995] = 1815, - [1996] = 1833, - [1997] = 1834, - [1998] = 1834, - [1999] = 1999, - [2000] = 1978, - [2001] = 2001, - [2002] = 1884, - [2003] = 1842, - [2004] = 2004, - [2005] = 1947, - [2006] = 1787, - [2007] = 1789, - [2008] = 2008, - [2009] = 1919, - [2010] = 2010, - [2011] = 1842, + [1987] = 1865, + [1988] = 1988, + [1989] = 1809, + [1990] = 1990, + [1991] = 1873, + [1992] = 1946, + [1993] = 1803, + [1994] = 1994, + [1995] = 1888, + [1996] = 1768, + [1997] = 1769, + [1998] = 1861, + [1999] = 1809, + [2000] = 2000, + [2001] = 1773, + [2002] = 2002, + [2003] = 1888, + [2004] = 1881, + [2005] = 1774, + [2006] = 2006, + [2007] = 1822, + [2008] = 1946, + [2009] = 2009, + [2010] = 1788, + [2011] = 1946, [2012] = 2012, - [2013] = 1004, - [2014] = 2008, - [2015] = 2015, - [2016] = 1978, - [2017] = 2017, - [2018] = 2008, - [2019] = 1978, - [2020] = 2020, - [2021] = 1787, - [2022] = 1978, + [2013] = 2013, + [2014] = 1809, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -5609,22 +5587,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(108); END_STATE(); case 21: - if (lookahead == '\n') SKIP(48); + if (lookahead == '\n') SKIP(23); END_STATE(); case 22: - if (lookahead == '\n') SKIP(48); + if (lookahead == '\n') SKIP(23); if (lookahead == '\r') SKIP(21); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); END_STATE(); case 23: - if (lookahead == '\n') SKIP(25); - END_STATE(); - case 24: - if (lookahead == '\n') SKIP(25); - if (lookahead == '\r') SKIP(23); - END_STATE(); - case 25: ADVANCE_MAP( '\n', 130, '!', 68, @@ -5639,11 +5608,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 69, '>', 218, ); - if (lookahead == '\\') SKIP(24); + if (lookahead == '\\') SKIP(22); if (lookahead == '^') ADVANCE(210); if (lookahead == '|') ADVANCE(209); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(25); + lookahead == ' ') SKIP(23); + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(48); + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(48); + if (lookahead == '\r') SKIP(24); + if (lookahead == 'U') ADVANCE(116); + if (lookahead == 'u') ADVANCE(108); END_STATE(); case 26: if (lookahead == '\n') SKIP(56); @@ -5682,8 +5660,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(293); END_STATE(); case 32: + if (lookahead == '\n') SKIP(55); + if (lookahead == '"') ADVANCE(287); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '\\') ADVANCE(31); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(291); + if (lookahead != 0) ADVANCE(292); + END_STATE(); + case 33: if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(37); if (lookahead == '(') ADVANCE(125); if (lookahead == '/') ADVANCE(151); if (lookahead == '\\') ADVANCE(146); @@ -5691,25 +5678,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(153); END_STATE(); - case 33: + case 34: if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(37); if (lookahead == '/') ADVANCE(151); if (lookahead == '\\') ADVANCE(146); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(153); END_STATE(); - case 34: + case 35: if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\r') ADVANCE(35); + if (lookahead == '\r') ADVANCE(36); if (lookahead == '(') ADVANCE(186); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(59); END_STATE(); - case 35: + case 36: if (lookahead == '\n') ADVANCE(123); if (lookahead == '(') ADVANCE(186); if (lookahead == '/') ADVANCE(60); @@ -5717,7 +5704,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); END_STATE(); - case 36: + case 37: if (lookahead == '\n') ADVANCE(123); if (lookahead == '/') ADVANCE(151); if (lookahead == '\\') ADVANCE(146); @@ -5725,15 +5712,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(153); END_STATE(); - case 37: - if (lookahead == '\n') SKIP(55); - if (lookahead == '"') ADVANCE(287); - if (lookahead == '/') ADVANCE(288); - if (lookahead == '\\') ADVANCE(31); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(291); - if (lookahead != 0) ADVANCE(292); - END_STATE(); case 38: if (lookahead == '\n') SKIP(59); END_STATE(); @@ -5941,7 +5919,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 260, 'L', 310, 'U', 311, - '\\', 22, + '\\', 25, 'u', 312, '~', 189, ); @@ -9573,7 +9551,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 45}, [22] = {.lex_state = 45}, [23] = {.lex_state = 120}, - [24] = {.lex_state = 120}, + [24] = {.lex_state = 47}, [25] = {.lex_state = 120}, [26] = {.lex_state = 47}, [27] = {.lex_state = 120}, @@ -9584,12 +9562,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [32] = {.lex_state = 120}, [33] = {.lex_state = 120}, [34] = {.lex_state = 120}, - [35] = {.lex_state = 47}, - [36] = {.lex_state = 120}, + [35] = {.lex_state = 120}, + [36] = {.lex_state = 47}, [37] = {.lex_state = 120}, [38] = {.lex_state = 120}, [39] = {.lex_state = 120}, - [40] = {.lex_state = 47}, + [40] = {.lex_state = 120}, [41] = {.lex_state = 120}, [42] = {.lex_state = 120}, [43] = {.lex_state = 120}, @@ -9610,8 +9588,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [58] = {.lex_state = 47}, [59] = {.lex_state = 47}, [60] = {.lex_state = 47}, - [61] = {.lex_state = 47}, - [62] = {.lex_state = 120}, + [61] = {.lex_state = 120}, + [62] = {.lex_state = 47}, [63] = {.lex_state = 120}, [64] = {.lex_state = 120}, [65] = {.lex_state = 120}, @@ -9636,9 +9614,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 45}, [85] = {.lex_state = 45}, [86] = {.lex_state = 45}, - [87] = {.lex_state = 45}, + [87] = {.lex_state = 120}, [88] = {.lex_state = 45}, - [89] = {.lex_state = 45}, + [89] = {.lex_state = 120}, [90] = {.lex_state = 45}, [91] = {.lex_state = 45}, [92] = {.lex_state = 45}, @@ -9664,9 +9642,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [112] = {.lex_state = 45}, [113] = {.lex_state = 45}, [114] = {.lex_state = 45}, - [115] = {.lex_state = 120}, + [115] = {.lex_state = 45}, [116] = {.lex_state = 45}, - [117] = {.lex_state = 120}, + [117] = {.lex_state = 45}, [118] = {.lex_state = 45}, [119] = {.lex_state = 45}, [120] = {.lex_state = 45}, @@ -9695,10 +9673,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [143] = {.lex_state = 45}, [144] = {.lex_state = 45}, [145] = {.lex_state = 45}, - [146] = {.lex_state = 45}, - [147] = {.lex_state = 45}, + [146] = {.lex_state = 120}, + [147] = {.lex_state = 120}, [148] = {.lex_state = 47}, - [149] = {.lex_state = 120}, + [149] = {.lex_state = 47}, [150] = {.lex_state = 120}, [151] = {.lex_state = 120}, [152] = {.lex_state = 120}, @@ -9725,38 +9703,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [173] = {.lex_state = 120}, [174] = {.lex_state = 120}, [175] = {.lex_state = 120}, - [176] = {.lex_state = 120}, - [177] = {.lex_state = 120}, + [176] = {.lex_state = 47}, + [177] = {.lex_state = 47}, [178] = {.lex_state = 47}, - [179] = {.lex_state = 47}, + [179] = {.lex_state = 120}, [180] = {.lex_state = 47}, - [181] = {.lex_state = 120}, + [181] = {.lex_state = 47}, [182] = {.lex_state = 47}, [183] = {.lex_state = 47}, [184] = {.lex_state = 47}, [185] = {.lex_state = 47}, [186] = {.lex_state = 47}, - [187] = {.lex_state = 47}, + [187] = {.lex_state = 120}, [188] = {.lex_state = 47}, [189] = {.lex_state = 120}, - [190] = {.lex_state = 47}, + [190] = {.lex_state = 120}, [191] = {.lex_state = 120}, - [192] = {.lex_state = 120}, + [192] = {.lex_state = 47}, [193] = {.lex_state = 47}, [194] = {.lex_state = 47}, [195] = {.lex_state = 47}, [196] = {.lex_state = 47}, [197] = {.lex_state = 47}, - [198] = {.lex_state = 47}, - [199] = {.lex_state = 47}, - [200] = {.lex_state = 120}, - [201] = {.lex_state = 120}, + [198] = {.lex_state = 120}, + [199] = {.lex_state = 120}, + [200] = {.lex_state = 47}, + [201] = {.lex_state = 47}, [202] = {.lex_state = 47}, [203] = {.lex_state = 47}, [204] = {.lex_state = 47}, - [205] = {.lex_state = 47}, + [205] = {.lex_state = 120}, [206] = {.lex_state = 47}, - [207] = {.lex_state = 120}, + [207] = {.lex_state = 47}, [208] = {.lex_state = 47}, [209] = {.lex_state = 47}, [210] = {.lex_state = 47}, @@ -9767,8 +9745,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [215] = {.lex_state = 47}, [216] = {.lex_state = 47}, [217] = {.lex_state = 47}, - [218] = {.lex_state = 47}, - [219] = {.lex_state = 47}, + [218] = {.lex_state = 120}, + [219] = {.lex_state = 120}, [220] = {.lex_state = 120}, [221] = {.lex_state = 120}, [222] = {.lex_state = 120}, @@ -9803,9 +9781,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 120}, [252] = {.lex_state = 120}, [253] = {.lex_state = 120}, - [254] = {.lex_state = 120}, + [254] = {.lex_state = 47}, [255] = {.lex_state = 120}, - [256] = {.lex_state = 47}, + [256] = {.lex_state = 120}, [257] = {.lex_state = 120}, [258] = {.lex_state = 120}, [259] = {.lex_state = 120}, @@ -9819,10 +9797,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [267] = {.lex_state = 120}, [268] = {.lex_state = 120}, [269] = {.lex_state = 120}, - [270] = {.lex_state = 120}, + [270] = {.lex_state = 44}, [271] = {.lex_state = 120}, [272] = {.lex_state = 120}, - [273] = {.lex_state = 44}, + [273] = {.lex_state = 120}, [274] = {.lex_state = 120}, [275] = {.lex_state = 120}, [276] = {.lex_state = 120}, @@ -9831,10 +9809,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [279] = {.lex_state = 120}, [280] = {.lex_state = 120}, [281] = {.lex_state = 120}, - [282] = {.lex_state = 120}, + [282] = {.lex_state = 47}, [283] = {.lex_state = 120}, - [284] = {.lex_state = 120}, - [285] = {.lex_state = 120}, + [284] = {.lex_state = 47}, + [285] = {.lex_state = 47}, [286] = {.lex_state = 47}, [287] = {.lex_state = 47}, [288] = {.lex_state = 47}, @@ -9858,16 +9836,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [306] = {.lex_state = 47}, [307] = {.lex_state = 47}, [308] = {.lex_state = 47}, - [309] = {.lex_state = 47}, - [310] = {.lex_state = 47}, + [309] = {.lex_state = 120}, + [310] = {.lex_state = 120}, [311] = {.lex_state = 47}, - [312] = {.lex_state = 47}, - [313] = {.lex_state = 47}, - [314] = {.lex_state = 47}, + [312] = {.lex_state = 44}, + [313] = {.lex_state = 120}, + [314] = {.lex_state = 120}, [315] = {.lex_state = 120}, [316] = {.lex_state = 120}, [317] = {.lex_state = 120}, - [318] = {.lex_state = 44}, + [318] = {.lex_state = 120}, [319] = {.lex_state = 120}, [320] = {.lex_state = 120}, [321] = {.lex_state = 120}, @@ -9932,56 +9910,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 120}, [381] = {.lex_state = 120}, [382] = {.lex_state = 120}, - [383] = {.lex_state = 120}, + [383] = {.lex_state = 44}, [384] = {.lex_state = 120}, [385] = {.lex_state = 120}, [386] = {.lex_state = 120}, [387] = {.lex_state = 120}, [388] = {.lex_state = 120}, [389] = {.lex_state = 120}, - [390] = {.lex_state = 44}, + [390] = {.lex_state = 120}, [391] = {.lex_state = 120}, [392] = {.lex_state = 120}, [393] = {.lex_state = 120}, [394] = {.lex_state = 120}, [395] = {.lex_state = 120}, - [396] = {.lex_state = 120}, - [397] = {.lex_state = 120}, + [396] = {.lex_state = 44}, + [397] = {.lex_state = 44}, [398] = {.lex_state = 120}, [399] = {.lex_state = 120}, - [400] = {.lex_state = 120}, - [401] = {.lex_state = 120}, - [402] = {.lex_state = 120}, - [403] = {.lex_state = 120}, - [404] = {.lex_state = 44}, - [405] = {.lex_state = 44}, - [406] = {.lex_state = 120}, - [407] = {.lex_state = 120}, + [400] = {.lex_state = 49}, + [401] = {.lex_state = 49}, + [402] = {.lex_state = 49}, + [403] = {.lex_state = 49}, + [404] = {.lex_state = 49}, + [405] = {.lex_state = 49}, + [406] = {.lex_state = 49}, + [407] = {.lex_state = 49}, [408] = {.lex_state = 49}, - [409] = {.lex_state = 49}, + [409] = {.lex_state = 44}, [410] = {.lex_state = 49}, - [411] = {.lex_state = 49}, - [412] = {.lex_state = 49}, - [413] = {.lex_state = 49}, - [414] = {.lex_state = 49}, - [415] = {.lex_state = 49}, - [416] = {.lex_state = 49}, - [417] = {.lex_state = 44}, - [418] = {.lex_state = 49}, - [419] = {.lex_state = 53}, + [411] = {.lex_state = 53}, + [412] = {.lex_state = 120}, + [413] = {.lex_state = 120}, + [414] = {.lex_state = 120}, + [415] = {.lex_state = 120}, + [416] = {.lex_state = 120}, + [417] = {.lex_state = 120}, + [418] = {.lex_state = 120}, + [419] = {.lex_state = 120}, [420] = {.lex_state = 120}, [421] = {.lex_state = 120}, [422] = {.lex_state = 120}, - [423] = {.lex_state = 120}, - [424] = {.lex_state = 120}, - [425] = {.lex_state = 120}, - [426] = {.lex_state = 120}, - [427] = {.lex_state = 120}, - [428] = {.lex_state = 120}, - [429] = {.lex_state = 120}, - [430] = {.lex_state = 120}, + [423] = {.lex_state = 53}, + [424] = {.lex_state = 53}, + [425] = {.lex_state = 53}, + [426] = {.lex_state = 53}, + [427] = {.lex_state = 53}, + [428] = {.lex_state = 53}, + [429] = {.lex_state = 53}, + [430] = {.lex_state = 53}, [431] = {.lex_state = 53}, - [432] = {.lex_state = 53}, + [432] = {.lex_state = 120}, [433] = {.lex_state = 53}, [434] = {.lex_state = 53}, [435] = {.lex_state = 53}, @@ -9990,24 +9968,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [438] = {.lex_state = 53}, [439] = {.lex_state = 53}, [440] = {.lex_state = 53}, - [441] = {.lex_state = 53}, - [442] = {.lex_state = 53}, - [443] = {.lex_state = 53}, + [441] = {.lex_state = 120}, + [442] = {.lex_state = 120}, + [443] = {.lex_state = 120}, [444] = {.lex_state = 53}, - [445] = {.lex_state = 53}, - [446] = {.lex_state = 53}, - [447] = {.lex_state = 120}, - [448] = {.lex_state = 53}, - [449] = {.lex_state = 120}, - [450] = {.lex_state = 120}, + [445] = {.lex_state = 52}, + [446] = {.lex_state = 57}, + [447] = {.lex_state = 52}, + [448] = {.lex_state = 57}, + [449] = {.lex_state = 57}, + [450] = {.lex_state = 52}, [451] = {.lex_state = 120}, - [452] = {.lex_state = 53}, - [453] = {.lex_state = 52}, - [454] = {.lex_state = 52}, - [455] = {.lex_state = 57}, - [456] = {.lex_state = 52}, - [457] = {.lex_state = 57}, - [458] = {.lex_state = 57}, + [452] = {.lex_state = 120}, + [453] = {.lex_state = 120}, + [454] = {.lex_state = 120}, + [455] = {.lex_state = 120}, + [456] = {.lex_state = 120}, + [457] = {.lex_state = 120}, + [458] = {.lex_state = 120}, [459] = {.lex_state = 120}, [460] = {.lex_state = 120}, [461] = {.lex_state = 120}, @@ -10033,29 +10011,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [481] = {.lex_state = 120}, [482] = {.lex_state = 120}, [483] = {.lex_state = 120}, - [484] = {.lex_state = 120}, + [484] = {.lex_state = 53}, [485] = {.lex_state = 120}, [486] = {.lex_state = 120}, [487] = {.lex_state = 120}, - [488] = {.lex_state = 120}, + [488] = {.lex_state = 53}, [489] = {.lex_state = 120}, [490] = {.lex_state = 120}, - [491] = {.lex_state = 120}, + [491] = {.lex_state = 53}, [492] = {.lex_state = 120}, - [493] = {.lex_state = 120}, + [493] = {.lex_state = 53}, [494] = {.lex_state = 120}, [495] = {.lex_state = 120}, [496] = {.lex_state = 120}, - [497] = {.lex_state = 53}, + [497] = {.lex_state = 120}, [498] = {.lex_state = 120}, - [499] = {.lex_state = 53}, + [499] = {.lex_state = 120}, [500] = {.lex_state = 120}, [501] = {.lex_state = 120}, [502] = {.lex_state = 120}, - [503] = {.lex_state = 53}, + [503] = {.lex_state = 120}, [504] = {.lex_state = 120}, [505] = {.lex_state = 120}, - [506] = {.lex_state = 53}, + [506] = {.lex_state = 120}, [507] = {.lex_state = 120}, [508] = {.lex_state = 120}, [509] = {.lex_state = 120}, @@ -10076,7 +10054,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 120}, [525] = {.lex_state = 120}, [526] = {.lex_state = 120}, - [527] = {.lex_state = 120}, + [527] = {.lex_state = 49}, [528] = {.lex_state = 120}, [529] = {.lex_state = 120}, [530] = {.lex_state = 120}, @@ -10099,7 +10077,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [547] = {.lex_state = 120}, [548] = {.lex_state = 120}, [549] = {.lex_state = 120}, - [550] = {.lex_state = 49}, + [550] = {.lex_state = 120}, [551] = {.lex_state = 120}, [552] = {.lex_state = 120}, [553] = {.lex_state = 120}, @@ -10169,32 +10147,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 120}, [618] = {.lex_state = 120}, [619] = {.lex_state = 120}, - [620] = {.lex_state = 120}, - [621] = {.lex_state = 120}, - [622] = {.lex_state = 120}, - [623] = {.lex_state = 120}, - [624] = {.lex_state = 120}, - [625] = {.lex_state = 120}, - [626] = {.lex_state = 120}, - [627] = {.lex_state = 120}, - [628] = {.lex_state = 49}, - [629] = {.lex_state = 49}, - [630] = {.lex_state = 49}, - [631] = {.lex_state = 49}, - [632] = {.lex_state = 53}, - [633] = {.lex_state = 53}, + [620] = {.lex_state = 49}, + [621] = {.lex_state = 49}, + [622] = {.lex_state = 49}, + [623] = {.lex_state = 53}, + [624] = {.lex_state = 53}, + [625] = {.lex_state = 49}, + [626] = {.lex_state = 53}, + [627] = {.lex_state = 49}, + [628] = {.lex_state = 50}, + [629] = {.lex_state = 50}, + [630] = {.lex_state = 50}, + [631] = {.lex_state = 50}, + [632] = {.lex_state = 50}, + [633] = {.lex_state = 50}, [634] = {.lex_state = 50}, [635] = {.lex_state = 50}, - [636] = {.lex_state = 50}, + [636] = {.lex_state = 49}, [637] = {.lex_state = 50}, - [638] = {.lex_state = 49}, - [639] = {.lex_state = 50}, - [640] = {.lex_state = 50}, - [641] = {.lex_state = 50}, - [642] = {.lex_state = 49}, - [643] = {.lex_state = 50}, - [644] = {.lex_state = 50}, - [645] = {.lex_state = 50}, + [638] = {.lex_state = 50}, + [639] = {.lex_state = 53}, + [640] = {.lex_state = 53}, + [641] = {.lex_state = 53}, + [642] = {.lex_state = 53}, + [643] = {.lex_state = 53}, + [644] = {.lex_state = 53}, + [645] = {.lex_state = 53}, [646] = {.lex_state = 53}, [647] = {.lex_state = 53}, [648] = {.lex_state = 53}, @@ -10202,30 +10180,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [650] = {.lex_state = 53}, [651] = {.lex_state = 53}, [652] = {.lex_state = 53}, - [653] = {.lex_state = 53}, + [653] = {.lex_state = 120}, [654] = {.lex_state = 53}, [655] = {.lex_state = 53}, - [656] = {.lex_state = 53}, + [656] = {.lex_state = 120}, [657] = {.lex_state = 53}, [658] = {.lex_state = 53}, - [659] = {.lex_state = 53}, + [659] = {.lex_state = 120}, [660] = {.lex_state = 53}, [661] = {.lex_state = 53}, - [662] = {.lex_state = 53}, - [663] = {.lex_state = 53}, - [664] = {.lex_state = 53}, + [662] = {.lex_state = 120}, + [663] = {.lex_state = 49}, + [664] = {.lex_state = 50}, [665] = {.lex_state = 53}, [666] = {.lex_state = 53}, - [667] = {.lex_state = 120}, - [668] = {.lex_state = 120}, - [669] = {.lex_state = 120}, - [670] = {.lex_state = 120}, + [667] = {.lex_state = 50}, + [668] = {.lex_state = 50}, + [669] = {.lex_state = 50}, + [670] = {.lex_state = 50}, [671] = {.lex_state = 50}, - [672] = {.lex_state = 53}, - [673] = {.lex_state = 49}, - [674] = {.lex_state = 53}, - [675] = {.lex_state = 53}, - [676] = {.lex_state = 50}, + [672] = {.lex_state = 50}, + [673] = {.lex_state = 50}, + [674] = {.lex_state = 50}, + [675] = {.lex_state = 50}, + [676] = {.lex_state = 53}, [677] = {.lex_state = 50}, [678] = {.lex_state = 50}, [679] = {.lex_state = 50}, @@ -10234,41 +10212,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [682] = {.lex_state = 50}, [683] = {.lex_state = 53}, [684] = {.lex_state = 50}, - [685] = {.lex_state = 50}, - [686] = {.lex_state = 50}, - [687] = {.lex_state = 50}, - [688] = {.lex_state = 50}, - [689] = {.lex_state = 50}, + [685] = {.lex_state = 53}, + [686] = {.lex_state = 53}, + [687] = {.lex_state = 53}, + [688] = {.lex_state = 53}, + [689] = {.lex_state = 53}, [690] = {.lex_state = 50}, - [691] = {.lex_state = 53}, + [691] = {.lex_state = 50}, [692] = {.lex_state = 50}, - [693] = {.lex_state = 50}, - [694] = {.lex_state = 53}, + [693] = {.lex_state = 51}, + [694] = {.lex_state = 120}, [695] = {.lex_state = 53}, - [696] = {.lex_state = 53}, - [697] = {.lex_state = 53}, - [698] = {.lex_state = 50}, - [699] = {.lex_state = 120}, - [700] = {.lex_state = 50}, - [701] = {.lex_state = 51}, + [696] = {.lex_state = 51}, + [697] = {.lex_state = 50}, + [698] = {.lex_state = 51}, + [699] = {.lex_state = 50}, + [700] = {.lex_state = 120}, + [701] = {.lex_state = 50}, [702] = {.lex_state = 50}, - [703] = {.lex_state = 120}, - [704] = {.lex_state = 50}, - [705] = {.lex_state = 50}, - [706] = {.lex_state = 51}, - [707] = {.lex_state = 50}, - [708] = {.lex_state = 50}, - [709] = {.lex_state = 51}, + [703] = {.lex_state = 53}, + [704] = {.lex_state = 53}, + [705] = {.lex_state = 53}, + [706] = {.lex_state = 53}, + [707] = {.lex_state = 53}, + [708] = {.lex_state = 53}, + [709] = {.lex_state = 53}, [710] = {.lex_state = 53}, [711] = {.lex_state = 53}, [712] = {.lex_state = 53}, - [713] = {.lex_state = 53}, + [713] = {.lex_state = 49}, [714] = {.lex_state = 49}, - [715] = {.lex_state = 53}, + [715] = {.lex_state = 49}, [716] = {.lex_state = 53}, [717] = {.lex_state = 53}, - [718] = {.lex_state = 49}, - [719] = {.lex_state = 49}, + [718] = {.lex_state = 53}, + [719] = {.lex_state = 53}, [720] = {.lex_state = 53}, [721] = {.lex_state = 53}, [722] = {.lex_state = 53}, @@ -10327,133 +10305,133 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [775] = {.lex_state = 53}, [776] = {.lex_state = 53}, [777] = {.lex_state = 53}, - [778] = {.lex_state = 53}, + [778] = {.lex_state = 49}, [779] = {.lex_state = 53}, [780] = {.lex_state = 53}, [781] = {.lex_state = 53}, [782] = {.lex_state = 53}, - [783] = {.lex_state = 53}, + [783] = {.lex_state = 49}, [784] = {.lex_state = 53}, [785] = {.lex_state = 53}, - [786] = {.lex_state = 53}, + [786] = {.lex_state = 49}, [787] = {.lex_state = 53}, - [788] = {.lex_state = 49}, + [788] = {.lex_state = 53}, [789] = {.lex_state = 53}, - [790] = {.lex_state = 53}, + [790] = {.lex_state = 49}, [791] = {.lex_state = 53}, - [792] = {.lex_state = 49}, - [793] = {.lex_state = 53}, - [794] = {.lex_state = 53}, + [792] = {.lex_state = 53}, + [793] = {.lex_state = 49}, + [794] = {.lex_state = 49}, [795] = {.lex_state = 53}, - [796] = {.lex_state = 49}, + [796] = {.lex_state = 53}, [797] = {.lex_state = 53}, [798] = {.lex_state = 53}, - [799] = {.lex_state = 49}, + [799] = {.lex_state = 53}, [800] = {.lex_state = 53}, - [801] = {.lex_state = 49}, + [801] = {.lex_state = 53}, [802] = {.lex_state = 53}, [803] = {.lex_state = 53}, - [804] = {.lex_state = 49}, - [805] = {.lex_state = 53}, - [806] = {.lex_state = 53}, - [807] = {.lex_state = 53}, - [808] = {.lex_state = 53}, - [809] = {.lex_state = 53}, - [810] = {.lex_state = 53}, - [811] = {.lex_state = 53}, - [812] = {.lex_state = 53}, - [813] = {.lex_state = 53}, - [814] = {.lex_state = 53}, + [804] = {.lex_state = 53}, + [805] = {.lex_state = 50}, + [806] = {.lex_state = 50}, + [807] = {.lex_state = 50}, + [808] = {.lex_state = 50}, + [809] = {.lex_state = 50}, + [810] = {.lex_state = 50}, + [811] = {.lex_state = 50}, + [812] = {.lex_state = 50}, + [813] = {.lex_state = 50}, + [814] = {.lex_state = 50}, [815] = {.lex_state = 53}, [816] = {.lex_state = 53}, - [817] = {.lex_state = 53}, + [817] = {.lex_state = 50}, [818] = {.lex_state = 53}, [819] = {.lex_state = 53}, [820] = {.lex_state = 53}, [821] = {.lex_state = 53}, [822] = {.lex_state = 53}, - [823] = {.lex_state = 50}, - [824] = {.lex_state = 50}, - [825] = {.lex_state = 50}, - [826] = {.lex_state = 50}, - [827] = {.lex_state = 53}, - [828] = {.lex_state = 50}, - [829] = {.lex_state = 50}, - [830] = {.lex_state = 50}, - [831] = {.lex_state = 50}, + [823] = {.lex_state = 53}, + [824] = {.lex_state = 53}, + [825] = {.lex_state = 53}, + [826] = {.lex_state = 53}, + [827] = {.lex_state = 49}, + [828] = {.lex_state = 53}, + [829] = {.lex_state = 53}, + [830] = {.lex_state = 53}, + [831] = {.lex_state = 53}, [832] = {.lex_state = 50}, [833] = {.lex_state = 50}, - [834] = {.lex_state = 50}, + [834] = {.lex_state = 53}, [835] = {.lex_state = 50}, [836] = {.lex_state = 53}, [837] = {.lex_state = 53}, [838] = {.lex_state = 53}, [839] = {.lex_state = 53}, - [840] = {.lex_state = 49}, + [840] = {.lex_state = 53}, [841] = {.lex_state = 53}, - [842] = {.lex_state = 50}, - [843] = {.lex_state = 53}, - [844] = {.lex_state = 53}, - [845] = {.lex_state = 50}, - [846] = {.lex_state = 53}, - [847] = {.lex_state = 53}, + [842] = {.lex_state = 52}, + [843] = {.lex_state = 52}, + [844] = {.lex_state = 52}, + [845] = {.lex_state = 52}, + [846] = {.lex_state = 52}, + [847] = {.lex_state = 57}, [848] = {.lex_state = 53}, - [849] = {.lex_state = 53}, - [850] = {.lex_state = 49}, + [849] = {.lex_state = 57}, + [850] = {.lex_state = 57}, [851] = {.lex_state = 57}, [852] = {.lex_state = 57}, - [853] = {.lex_state = 53}, + [853] = {.lex_state = 57}, [854] = {.lex_state = 57}, [855] = {.lex_state = 57}, [856] = {.lex_state = 57}, [857] = {.lex_state = 57}, - [858] = {.lex_state = 52}, + [858] = {.lex_state = 57}, [859] = {.lex_state = 57}, [860] = {.lex_state = 52}, - [861] = {.lex_state = 57}, + [861] = {.lex_state = 52}, [862] = {.lex_state = 52}, [863] = {.lex_state = 52}, [864] = {.lex_state = 52}, [865] = {.lex_state = 52}, - [866] = {.lex_state = 52}, - [867] = {.lex_state = 52}, - [868] = {.lex_state = 49}, - [869] = {.lex_state = 49}, + [866] = {.lex_state = 57}, + [867] = {.lex_state = 57}, + [868] = {.lex_state = 57}, + [869] = {.lex_state = 57}, [870] = {.lex_state = 57}, - [871] = {.lex_state = 52}, - [872] = {.lex_state = 57}, - [873] = {.lex_state = 57}, - [874] = {.lex_state = 52}, + [871] = {.lex_state = 57}, + [872] = {.lex_state = 52}, + [873] = {.lex_state = 49}, + [874] = {.lex_state = 53}, [875] = {.lex_state = 52}, - [876] = {.lex_state = 53}, - [877] = {.lex_state = 52}, - [878] = {.lex_state = 49}, - [879] = {.lex_state = 53}, - [880] = {.lex_state = 57}, - [881] = {.lex_state = 57}, - [882] = {.lex_state = 52}, - [883] = {.lex_state = 57}, - [884] = {.lex_state = 57}, - [885] = {.lex_state = 57}, - [886] = {.lex_state = 57}, - [887] = {.lex_state = 52}, - [888] = {.lex_state = 52}, - [889] = {.lex_state = 57}, - [890] = {.lex_state = 52}, - [891] = {.lex_state = 52}, - [892] = {.lex_state = 52}, - [893] = {.lex_state = 53}, - [894] = {.lex_state = 53}, + [876] = {.lex_state = 52}, + [877] = {.lex_state = 49}, + [878] = {.lex_state = 52}, + [879] = {.lex_state = 52}, + [880] = {.lex_state = 52}, + [881] = {.lex_state = 49}, + [882] = {.lex_state = 49}, + [883] = {.lex_state = 53}, + [884] = {.lex_state = 52}, + [885] = {.lex_state = 49}, + [886] = {.lex_state = 53}, + [887] = {.lex_state = 53}, + [888] = {.lex_state = 49}, + [889] = {.lex_state = 49}, + [890] = {.lex_state = 53}, + [891] = {.lex_state = 49}, + [892] = {.lex_state = 49}, + [893] = {.lex_state = 49}, + [894] = {.lex_state = 49}, [895] = {.lex_state = 49}, [896] = {.lex_state = 49}, - [897] = {.lex_state = 53}, + [897] = {.lex_state = 49}, [898] = {.lex_state = 49}, [899] = {.lex_state = 49}, [900] = {.lex_state = 49}, [901] = {.lex_state = 49}, [902] = {.lex_state = 49}, - [903] = {.lex_state = 49}, - [904] = {.lex_state = 49}, + [903] = {.lex_state = 53}, + [904] = {.lex_state = 53}, [905] = {.lex_state = 49}, [906] = {.lex_state = 49}, [907] = {.lex_state = 49}, @@ -10461,30 +10439,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [909] = {.lex_state = 49}, [910] = {.lex_state = 49}, [911] = {.lex_state = 49}, - [912] = {.lex_state = 49}, - [913] = {.lex_state = 49}, - [914] = {.lex_state = 49}, - [915] = {.lex_state = 49}, - [916] = {.lex_state = 53}, - [917] = {.lex_state = 53}, + [912] = {.lex_state = 53}, + [913] = {.lex_state = 120}, + [914] = {.lex_state = 120}, + [915] = {.lex_state = 120}, + [916] = {.lex_state = 49}, + [917] = {.lex_state = 49}, [918] = {.lex_state = 120}, [919] = {.lex_state = 120}, [920] = {.lex_state = 120}, [921] = {.lex_state = 120}, [922] = {.lex_state = 120}, - [923] = {.lex_state = 53}, - [924] = {.lex_state = 120}, - [925] = {.lex_state = 49}, - [926] = {.lex_state = 120}, - [927] = {.lex_state = 49}, - [928] = {.lex_state = 120}, - [929] = {.lex_state = 120}, - [930] = {.lex_state = 120}, - [931] = {.lex_state = 49}, - [932] = {.lex_state = 49}, + [923] = {.lex_state = 120}, + [924] = {.lex_state = 53}, + [925] = {.lex_state = 120}, + [926] = {.lex_state = 53}, + [927] = {.lex_state = 53}, + [928] = {.lex_state = 49}, + [929] = {.lex_state = 53}, + [930] = {.lex_state = 53}, + [931] = {.lex_state = 53}, + [932] = {.lex_state = 53}, [933] = {.lex_state = 53}, [934] = {.lex_state = 53}, - [935] = {.lex_state = 49}, + [935] = {.lex_state = 53}, [936] = {.lex_state = 53}, [937] = {.lex_state = 53}, [938] = {.lex_state = 53}, @@ -10512,48 +10490,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [960] = {.lex_state = 53}, [961] = {.lex_state = 53}, [962] = {.lex_state = 53}, - [963] = {.lex_state = 53}, - [964] = {.lex_state = 53}, - [965] = {.lex_state = 53}, - [966] = {.lex_state = 53}, - [967] = {.lex_state = 53}, + [963] = {.lex_state = 50}, + [964] = {.lex_state = 50}, + [965] = {.lex_state = 50}, + [966] = {.lex_state = 50}, + [967] = {.lex_state = 50}, [968] = {.lex_state = 50}, - [969] = {.lex_state = 53}, + [969] = {.lex_state = 50}, [970] = {.lex_state = 50}, [971] = {.lex_state = 50}, [972] = {.lex_state = 50}, [973] = {.lex_state = 50}, [974] = {.lex_state = 50}, - [975] = {.lex_state = 50}, - [976] = {.lex_state = 50}, - [977] = {.lex_state = 50}, - [978] = {.lex_state = 50}, - [979] = {.lex_state = 50}, - [980] = {.lex_state = 50}, + [975] = {.lex_state = 53}, + [976] = {.lex_state = 53}, + [977] = {.lex_state = 53}, + [978] = {.lex_state = 53}, + [979] = {.lex_state = 53}, + [980] = {.lex_state = 53}, [981] = {.lex_state = 50}, [982] = {.lex_state = 53}, - [983] = {.lex_state = 53}, + [983] = {.lex_state = 50}, [984] = {.lex_state = 53}, [985] = {.lex_state = 53}, - [986] = {.lex_state = 53}, - [987] = {.lex_state = 50}, + [986] = {.lex_state = 52}, + [987] = {.lex_state = 53}, [988] = {.lex_state = 53}, [989] = {.lex_state = 53}, [990] = {.lex_state = 53}, - [991] = {.lex_state = 53}, + [991] = {.lex_state = 52}, [992] = {.lex_state = 53}, [993] = {.lex_state = 53}, [994] = {.lex_state = 53}, [995] = {.lex_state = 53}, [996] = {.lex_state = 53}, [997] = {.lex_state = 53}, - [998] = {.lex_state = 53}, - [999] = {.lex_state = 52}, - [1000] = {.lex_state = 52}, - [1001] = {.lex_state = 53}, + [998] = {.lex_state = 52}, + [999] = {.lex_state = 53}, + [1000] = {.lex_state = 53}, + [1001] = {.lex_state = 52}, [1002] = {.lex_state = 53}, [1003] = {.lex_state = 53}, - [1004] = {.lex_state = 52}, + [1004] = {.lex_state = 53}, [1005] = {.lex_state = 53}, [1006] = {.lex_state = 53}, [1007] = {.lex_state = 53}, @@ -10561,21 +10539,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1009] = {.lex_state = 53}, [1010] = {.lex_state = 53}, [1011] = {.lex_state = 53}, - [1012] = {.lex_state = 52}, + [1012] = {.lex_state = 49}, [1013] = {.lex_state = 53}, [1014] = {.lex_state = 53}, - [1015] = {.lex_state = 53}, - [1016] = {.lex_state = 53}, - [1017] = {.lex_state = 53}, - [1018] = {.lex_state = 53}, + [1015] = {.lex_state = 49}, + [1016] = {.lex_state = 49}, + [1017] = {.lex_state = 49}, + [1018] = {.lex_state = 49}, [1019] = {.lex_state = 49}, - [1020] = {.lex_state = 53}, + [1020] = {.lex_state = 49}, [1021] = {.lex_state = 53}, - [1022] = {.lex_state = 53}, + [1022] = {.lex_state = 49}, [1023] = {.lex_state = 49}, [1024] = {.lex_state = 49}, [1025] = {.lex_state = 49}, - [1026] = {.lex_state = 49}, + [1026] = {.lex_state = 53}, [1027] = {.lex_state = 49}, [1028] = {.lex_state = 49}, [1029] = {.lex_state = 49}, @@ -10599,7 +10577,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1047] = {.lex_state = 49}, [1048] = {.lex_state = 49}, [1049] = {.lex_state = 49}, - [1050] = {.lex_state = 49}, + [1050] = {.lex_state = 53}, [1051] = {.lex_state = 49}, [1052] = {.lex_state = 49}, [1053] = {.lex_state = 49}, @@ -10611,53 +10589,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1059] = {.lex_state = 49}, [1060] = {.lex_state = 49}, [1061] = {.lex_state = 49}, - [1062] = {.lex_state = 53}, - [1063] = {.lex_state = 53}, + [1062] = {.lex_state = 49}, + [1063] = {.lex_state = 49}, [1064] = {.lex_state = 49}, [1065] = {.lex_state = 49}, [1066] = {.lex_state = 49}, [1067] = {.lex_state = 49}, - [1068] = {.lex_state = 49}, - [1069] = {.lex_state = 53}, + [1068] = {.lex_state = 53}, + [1069] = {.lex_state = 49}, [1070] = {.lex_state = 49}, [1071] = {.lex_state = 49}, [1072] = {.lex_state = 49}, [1073] = {.lex_state = 49}, - [1074] = {.lex_state = 49}, + [1074] = {.lex_state = 53}, [1075] = {.lex_state = 49}, - [1076] = {.lex_state = 53}, - [1077] = {.lex_state = 49}, + [1076] = {.lex_state = 49}, + [1077] = {.lex_state = 53}, [1078] = {.lex_state = 49}, - [1079] = {.lex_state = 49}, + [1079] = {.lex_state = 53}, [1080] = {.lex_state = 49}, [1081] = {.lex_state = 49}, [1082] = {.lex_state = 49}, [1083] = {.lex_state = 49}, - [1084] = {.lex_state = 53}, - [1085] = {.lex_state = 53}, - [1086] = {.lex_state = 49}, - [1087] = {.lex_state = 53}, + [1084] = {.lex_state = 49}, + [1085] = {.lex_state = 49}, + [1086] = {.lex_state = 53}, + [1087] = {.lex_state = 49}, [1088] = {.lex_state = 49}, [1089] = {.lex_state = 49}, [1090] = {.lex_state = 49}, - [1091] = {.lex_state = 53}, + [1091] = {.lex_state = 49}, [1092] = {.lex_state = 49}, [1093] = {.lex_state = 53}, [1094] = {.lex_state = 49}, [1095] = {.lex_state = 49}, [1096] = {.lex_state = 49}, [1097] = {.lex_state = 49}, - [1098] = {.lex_state = 49}, + [1098] = {.lex_state = 53}, [1099] = {.lex_state = 49}, [1100] = {.lex_state = 49}, - [1101] = {.lex_state = 53}, - [1102] = {.lex_state = 49}, + [1101] = {.lex_state = 49}, + [1102] = {.lex_state = 53}, [1103] = {.lex_state = 49}, - [1104] = {.lex_state = 49}, - [1105] = {.lex_state = 49}, - [1106] = {.lex_state = 49}, - [1107] = {.lex_state = 49}, - [1108] = {.lex_state = 49}, + [1104] = {.lex_state = 53}, + [1105] = {.lex_state = 53}, + [1106] = {.lex_state = 53}, + [1107] = {.lex_state = 53}, + [1108] = {.lex_state = 53}, [1109] = {.lex_state = 53}, [1110] = {.lex_state = 53}, [1111] = {.lex_state = 53}, @@ -10665,12 +10643,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1113] = {.lex_state = 53}, [1114] = {.lex_state = 53}, [1115] = {.lex_state = 53}, - [1116] = {.lex_state = 49}, + [1116] = {.lex_state = 53}, [1117] = {.lex_state = 53}, [1118] = {.lex_state = 53}, - [1119] = {.lex_state = 49}, + [1119] = {.lex_state = 53}, [1120] = {.lex_state = 53}, - [1121] = {.lex_state = 53}, + [1121] = {.lex_state = 52}, [1122] = {.lex_state = 53}, [1123] = {.lex_state = 53}, [1124] = {.lex_state = 53}, @@ -10690,126 +10668,126 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1138] = {.lex_state = 53}, [1139] = {.lex_state = 53}, [1140] = {.lex_state = 53}, - [1141] = {.lex_state = 53}, + [1141] = {.lex_state = 23}, [1142] = {.lex_state = 53}, [1143] = {.lex_state = 53}, [1144] = {.lex_state = 53}, - [1145] = {.lex_state = 52}, - [1146] = {.lex_state = 53}, + [1145] = {.lex_state = 53}, + [1146] = {.lex_state = 48}, [1147] = {.lex_state = 53}, [1148] = {.lex_state = 53}, - [1149] = {.lex_state = 53}, - [1150] = {.lex_state = 52}, - [1151] = {.lex_state = 52}, - [1152] = {.lex_state = 53}, - [1153] = {.lex_state = 53}, + [1149] = {.lex_state = 52}, + [1150] = {.lex_state = 48}, + [1151] = {.lex_state = 53}, + [1152] = {.lex_state = 52}, + [1153] = {.lex_state = 52}, [1154] = {.lex_state = 53}, [1155] = {.lex_state = 53}, [1156] = {.lex_state = 53}, - [1157] = {.lex_state = 52}, + [1157] = {.lex_state = 48}, [1158] = {.lex_state = 53}, - [1159] = {.lex_state = 53}, - [1160] = {.lex_state = 53}, + [1159] = {.lex_state = 48}, + [1160] = {.lex_state = 48}, [1161] = {.lex_state = 48}, - [1162] = {.lex_state = 53}, + [1162] = {.lex_state = 48}, [1163] = {.lex_state = 48}, [1164] = {.lex_state = 48}, - [1165] = {.lex_state = 53}, - [1166] = {.lex_state = 25}, + [1165] = {.lex_state = 52}, + [1166] = {.lex_state = 48}, [1167] = {.lex_state = 48}, - [1168] = {.lex_state = 52}, - [1169] = {.lex_state = 52}, + [1168] = {.lex_state = 48}, + [1169] = {.lex_state = 48}, [1170] = {.lex_state = 48}, - [1171] = {.lex_state = 52}, + [1171] = {.lex_state = 48}, [1172] = {.lex_state = 48}, [1173] = {.lex_state = 48}, [1174] = {.lex_state = 48}, [1175] = {.lex_state = 48}, - [1176] = {.lex_state = 52}, + [1176] = {.lex_state = 48}, [1177] = {.lex_state = 48}, - [1178] = {.lex_state = 52}, - [1179] = {.lex_state = 48}, - [1180] = {.lex_state = 52}, - [1181] = {.lex_state = 48}, + [1178] = {.lex_state = 48}, + [1179] = {.lex_state = 52}, + [1180] = {.lex_state = 48}, + [1181] = {.lex_state = 52}, [1182] = {.lex_state = 52}, [1183] = {.lex_state = 48}, - [1184] = {.lex_state = 52}, + [1184] = {.lex_state = 48}, [1185] = {.lex_state = 48}, [1186] = {.lex_state = 48}, - [1187] = {.lex_state = 52}, + [1187] = {.lex_state = 48}, [1188] = {.lex_state = 48}, - [1189] = {.lex_state = 52}, - [1190] = {.lex_state = 52}, - [1191] = {.lex_state = 48}, + [1189] = {.lex_state = 48}, + [1190] = {.lex_state = 48}, + [1191] = {.lex_state = 52}, [1192] = {.lex_state = 48}, - [1193] = {.lex_state = 48}, + [1193] = {.lex_state = 52}, [1194] = {.lex_state = 48}, [1195] = {.lex_state = 48}, - [1196] = {.lex_state = 48}, + [1196] = {.lex_state = 52}, [1197] = {.lex_state = 48}, [1198] = {.lex_state = 48}, [1199] = {.lex_state = 48}, [1200] = {.lex_state = 48}, - [1201] = {.lex_state = 48}, - [1202] = {.lex_state = 52}, - [1203] = {.lex_state = 48}, - [1204] = {.lex_state = 48}, - [1205] = {.lex_state = 52}, + [1201] = {.lex_state = 52}, + [1202] = {.lex_state = 48}, + [1203] = {.lex_state = 52}, + [1204] = {.lex_state = 52}, + [1205] = {.lex_state = 48}, [1206] = {.lex_state = 48}, - [1207] = {.lex_state = 48}, - [1208] = {.lex_state = 48}, - [1209] = {.lex_state = 48}, - [1210] = {.lex_state = 48}, - [1211] = {.lex_state = 48}, - [1212] = {.lex_state = 48}, - [1213] = {.lex_state = 52}, - [1214] = {.lex_state = 48}, - [1215] = {.lex_state = 48}, - [1216] = {.lex_state = 48}, - [1217] = {.lex_state = 48}, - [1218] = {.lex_state = 52}, - [1219] = {.lex_state = 48}, - [1220] = {.lex_state = 52}, - [1221] = {.lex_state = 48}, - [1222] = {.lex_state = 52}, - [1223] = {.lex_state = 25}, - [1224] = {.lex_state = 25}, - [1225] = {.lex_state = 25}, - [1226] = {.lex_state = 25}, - [1227] = {.lex_state = 25}, - [1228] = {.lex_state = 25}, - [1229] = {.lex_state = 25}, - [1230] = {.lex_state = 25}, - [1231] = {.lex_state = 25}, - [1232] = {.lex_state = 25}, - [1233] = {.lex_state = 52}, - [1234] = {.lex_state = 25}, - [1235] = {.lex_state = 25}, - [1236] = {.lex_state = 25}, - [1237] = {.lex_state = 25}, - [1238] = {.lex_state = 25}, - [1239] = {.lex_state = 25}, - [1240] = {.lex_state = 25}, - [1241] = {.lex_state = 25}, - [1242] = {.lex_state = 25}, - [1243] = {.lex_state = 25}, - [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 25}, - [1246] = {.lex_state = 53}, - [1247] = {.lex_state = 25}, - [1248] = {.lex_state = 25}, - [1249] = {.lex_state = 25}, - [1250] = {.lex_state = 25}, - [1251] = {.lex_state = 25}, - [1252] = {.lex_state = 53}, - [1253] = {.lex_state = 25}, - [1254] = {.lex_state = 25}, + [1207] = {.lex_state = 52}, + [1208] = {.lex_state = 52}, + [1209] = {.lex_state = 52}, + [1210] = {.lex_state = 52}, + [1211] = {.lex_state = 52}, + [1212] = {.lex_state = 52}, + [1213] = {.lex_state = 48}, + [1214] = {.lex_state = 52}, + [1215] = {.lex_state = 23}, + [1216] = {.lex_state = 23}, + [1217] = {.lex_state = 23}, + [1218] = {.lex_state = 23}, + [1219] = {.lex_state = 23}, + [1220] = {.lex_state = 23}, + [1221] = {.lex_state = 23}, + [1222] = {.lex_state = 23}, + [1223] = {.lex_state = 23}, + [1224] = {.lex_state = 23}, + [1225] = {.lex_state = 23}, + [1226] = {.lex_state = 23}, + [1227] = {.lex_state = 23}, + [1228] = {.lex_state = 23}, + [1229] = {.lex_state = 23}, + [1230] = {.lex_state = 23}, + [1231] = {.lex_state = 23}, + [1232] = {.lex_state = 52}, + [1233] = {.lex_state = 23}, + [1234] = {.lex_state = 23}, + [1235] = {.lex_state = 23}, + [1236] = {.lex_state = 23}, + [1237] = {.lex_state = 23}, + [1238] = {.lex_state = 23}, + [1239] = {.lex_state = 23}, + [1240] = {.lex_state = 53}, + [1241] = {.lex_state = 23}, + [1242] = {.lex_state = 23}, + [1243] = {.lex_state = 53}, + [1244] = {.lex_state = 23}, + [1245] = {.lex_state = 23}, + [1246] = {.lex_state = 23}, + [1247] = {.lex_state = 23}, + [1248] = {.lex_state = 53}, + [1249] = {.lex_state = 23}, + [1250] = {.lex_state = 23}, + [1251] = {.lex_state = 53}, + [1252] = {.lex_state = 23}, + [1253] = {.lex_state = 53}, + [1254] = {.lex_state = 53}, [1255] = {.lex_state = 53}, - [1256] = {.lex_state = 25}, - [1257] = {.lex_state = 25}, - [1258] = {.lex_state = 25}, + [1256] = {.lex_state = 53}, + [1257] = {.lex_state = 53}, + [1258] = {.lex_state = 53}, [1259] = {.lex_state = 53}, - [1260] = {.lex_state = 25}, + [1260] = {.lex_state = 53}, [1261] = {.lex_state = 53}, [1262] = {.lex_state = 53}, [1263] = {.lex_state = 53}, @@ -10832,20 +10810,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1280] = {.lex_state = 53}, [1281] = {.lex_state = 53}, [1282] = {.lex_state = 53}, - [1283] = {.lex_state = 53}, + [1283] = {.lex_state = 50}, [1284] = {.lex_state = 53}, - [1285] = {.lex_state = 53}, - [1286] = {.lex_state = 53}, - [1287] = {.lex_state = 53}, + [1285] = {.lex_state = 50}, + [1286] = {.lex_state = 50}, + [1287] = {.lex_state = 50}, [1288] = {.lex_state = 53}, [1289] = {.lex_state = 53}, [1290] = {.lex_state = 53}, - [1291] = {.lex_state = 50}, - [1292] = {.lex_state = 50}, - [1293] = {.lex_state = 50}, - [1294] = {.lex_state = 50}, + [1291] = {.lex_state = 53}, + [1292] = {.lex_state = 53}, + [1293] = {.lex_state = 53}, + [1294] = {.lex_state = 53}, [1295] = {.lex_state = 53}, - [1296] = {.lex_state = 53}, + [1296] = {.lex_state = 56}, [1297] = {.lex_state = 53}, [1298] = {.lex_state = 53}, [1299] = {.lex_state = 53}, @@ -10857,7 +10835,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1305] = {.lex_state = 53}, [1306] = {.lex_state = 53}, [1307] = {.lex_state = 53}, - [1308] = {.lex_state = 53}, + [1308] = {.lex_state = 56}, [1309] = {.lex_state = 53}, [1310] = {.lex_state = 53}, [1311] = {.lex_state = 53}, @@ -10866,188 +10844,188 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1314] = {.lex_state = 53}, [1315] = {.lex_state = 53}, [1316] = {.lex_state = 53}, - [1317] = {.lex_state = 56}, + [1317] = {.lex_state = 53}, [1318] = {.lex_state = 53}, [1319] = {.lex_state = 53}, [1320] = {.lex_state = 53}, [1321] = {.lex_state = 53}, [1322] = {.lex_state = 53}, [1323] = {.lex_state = 53}, - [1324] = {.lex_state = 56}, + [1324] = {.lex_state = 50}, [1325] = {.lex_state = 53}, [1326] = {.lex_state = 53}, - [1327] = {.lex_state = 53}, - [1328] = {.lex_state = 53}, - [1329] = {.lex_state = 53}, - [1330] = {.lex_state = 53}, - [1331] = {.lex_state = 49}, - [1332] = {.lex_state = 50}, + [1327] = {.lex_state = 50}, + [1328] = {.lex_state = 49}, + [1329] = {.lex_state = 50}, + [1330] = {.lex_state = 50}, + [1331] = {.lex_state = 53}, + [1332] = {.lex_state = 56}, [1333] = {.lex_state = 53}, - [1334] = {.lex_state = 56}, + [1334] = {.lex_state = 50}, [1335] = {.lex_state = 53}, - [1336] = {.lex_state = 50}, + [1336] = {.lex_state = 53}, [1337] = {.lex_state = 53}, [1338] = {.lex_state = 53}, - [1339] = {.lex_state = 53}, + [1339] = {.lex_state = 50}, [1340] = {.lex_state = 50}, - [1341] = {.lex_state = 50}, + [1341] = {.lex_state = 53}, [1342] = {.lex_state = 50}, [1343] = {.lex_state = 50}, - [1344] = {.lex_state = 50}, - [1345] = {.lex_state = 53}, + [1344] = {.lex_state = 53}, + [1345] = {.lex_state = 50}, [1346] = {.lex_state = 50}, [1347] = {.lex_state = 50}, - [1348] = {.lex_state = 50}, + [1348] = {.lex_state = 53}, [1349] = {.lex_state = 53}, [1350] = {.lex_state = 53}, - [1351] = {.lex_state = 53}, - [1352] = {.lex_state = 50}, - [1353] = {.lex_state = 50}, - [1354] = {.lex_state = 53}, + [1351] = {.lex_state = 50}, + [1352] = {.lex_state = 53}, + [1353] = {.lex_state = 53}, + [1354] = {.lex_state = 50}, [1355] = {.lex_state = 53}, - [1356] = {.lex_state = 53}, + [1356] = {.lex_state = 120}, [1357] = {.lex_state = 53}, [1358] = {.lex_state = 53}, - [1359] = {.lex_state = 50}, - [1360] = {.lex_state = 50}, - [1361] = {.lex_state = 53}, - [1362] = {.lex_state = 53}, + [1359] = {.lex_state = 53}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 120}, + [1362] = {.lex_state = 120}, [1363] = {.lex_state = 53}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 120}, + [1364] = {.lex_state = 120}, + [1365] = {.lex_state = 53}, [1366] = {.lex_state = 53}, [1367] = {.lex_state = 53}, - [1368] = {.lex_state = 53}, + [1368] = {.lex_state = 0}, [1369] = {.lex_state = 53}, [1370] = {.lex_state = 53}, - [1371] = {.lex_state = 53}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 120}, - [1374] = {.lex_state = 120}, - [1375] = {.lex_state = 53}, + [1371] = {.lex_state = 120}, + [1372] = {.lex_state = 120}, + [1373] = {.lex_state = 54}, + [1374] = {.lex_state = 53}, + [1375] = {.lex_state = 120}, [1376] = {.lex_state = 120}, - [1377] = {.lex_state = 49}, - [1378] = {.lex_state = 120}, - [1379] = {.lex_state = 54}, - [1380] = {.lex_state = 53}, - [1381] = {.lex_state = 120}, + [1377] = {.lex_state = 53}, + [1378] = {.lex_state = 53}, + [1379] = {.lex_state = 120}, + [1380] = {.lex_state = 120}, + [1381] = {.lex_state = 49}, [1382] = {.lex_state = 53}, - [1383] = {.lex_state = 53}, - [1384] = {.lex_state = 53}, - [1385] = {.lex_state = 49}, - [1386] = {.lex_state = 49}, - [1387] = {.lex_state = 54}, - [1388] = {.lex_state = 53}, - [1389] = {.lex_state = 53}, - [1390] = {.lex_state = 54}, - [1391] = {.lex_state = 120}, - [1392] = {.lex_state = 53}, - [1393] = {.lex_state = 120}, - [1394] = {.lex_state = 120}, - [1395] = {.lex_state = 53}, + [1383] = {.lex_state = 54}, + [1384] = {.lex_state = 120}, + [1385] = {.lex_state = 53}, + [1386] = {.lex_state = 53}, + [1387] = {.lex_state = 120}, + [1388] = {.lex_state = 54}, + [1389] = {.lex_state = 49}, + [1390] = {.lex_state = 120}, + [1391] = {.lex_state = 53}, + [1392] = {.lex_state = 54}, + [1393] = {.lex_state = 53}, + [1394] = {.lex_state = 53}, + [1395] = {.lex_state = 49}, [1396] = {.lex_state = 53}, [1397] = {.lex_state = 53}, - [1398] = {.lex_state = 54}, - [1399] = {.lex_state = 53}, - [1400] = {.lex_state = 120}, + [1398] = {.lex_state = 53}, + [1399] = {.lex_state = 120}, + [1400] = {.lex_state = 53}, [1401] = {.lex_state = 120}, - [1402] = {.lex_state = 120}, - [1403] = {.lex_state = 53}, - [1404] = {.lex_state = 120}, - [1405] = {.lex_state = 53}, + [1402] = {.lex_state = 53}, + [1403] = {.lex_state = 120}, + [1404] = {.lex_state = 53}, + [1405] = {.lex_state = 120}, [1406] = {.lex_state = 120}, - [1407] = {.lex_state = 120}, - [1408] = {.lex_state = 120}, - [1409] = {.lex_state = 53}, + [1407] = {.lex_state = 53}, + [1408] = {.lex_state = 53}, + [1409] = {.lex_state = 50}, [1410] = {.lex_state = 53}, - [1411] = {.lex_state = 120}, + [1411] = {.lex_state = 53}, [1412] = {.lex_state = 120}, - [1413] = {.lex_state = 53}, - [1414] = {.lex_state = 53}, - [1415] = {.lex_state = 50}, + [1413] = {.lex_state = 120}, + [1414] = {.lex_state = 50}, + [1415] = {.lex_state = 53}, [1416] = {.lex_state = 120}, - [1417] = {.lex_state = 50}, - [1418] = {.lex_state = 53}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 53}, - [1421] = {.lex_state = 53}, + [1417] = {.lex_state = 53}, + [1418] = {.lex_state = 120}, + [1419] = {.lex_state = 120}, + [1420] = {.lex_state = 50}, + [1421] = {.lex_state = 0}, [1422] = {.lex_state = 120}, [1423] = {.lex_state = 53}, [1424] = {.lex_state = 53}, - [1425] = {.lex_state = 120}, + [1425] = {.lex_state = 0}, [1426] = {.lex_state = 53}, - [1427] = {.lex_state = 50}, - [1428] = {.lex_state = 120}, + [1427] = {.lex_state = 120}, + [1428] = {.lex_state = 53}, [1429] = {.lex_state = 53}, - [1430] = {.lex_state = 53}, - [1431] = {.lex_state = 0}, + [1430] = {.lex_state = 120}, + [1431] = {.lex_state = 53}, [1432] = {.lex_state = 53}, [1433] = {.lex_state = 120}, - [1434] = {.lex_state = 120}, - [1435] = {.lex_state = 120}, + [1434] = {.lex_state = 53}, + [1435] = {.lex_state = 53}, [1436] = {.lex_state = 53}, [1437] = {.lex_state = 53}, - [1438] = {.lex_state = 120}, - [1439] = {.lex_state = 120}, + [1438] = {.lex_state = 53}, + [1439] = {.lex_state = 53}, [1440] = {.lex_state = 53}, - [1441] = {.lex_state = 53}, - [1442] = {.lex_state = 53}, - [1443] = {.lex_state = 120}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 53}, - [1446] = {.lex_state = 53}, + [1441] = {.lex_state = 120}, + [1442] = {.lex_state = 120}, + [1443] = {.lex_state = 53}, + [1444] = {.lex_state = 53}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 120}, [1447] = {.lex_state = 53}, [1448] = {.lex_state = 53}, [1449] = {.lex_state = 53}, [1450] = {.lex_state = 53}, - [1451] = {.lex_state = 53}, + [1451] = {.lex_state = 50}, [1452] = {.lex_state = 53}, [1453] = {.lex_state = 53}, - [1454] = {.lex_state = 120}, + [1454] = {.lex_state = 53}, [1455] = {.lex_state = 53}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 53}, + [1456] = {.lex_state = 53}, + [1457] = {.lex_state = 120}, [1458] = {.lex_state = 53}, [1459] = {.lex_state = 53}, - [1460] = {.lex_state = 53}, - [1461] = {.lex_state = 120}, + [1460] = {.lex_state = 120}, + [1461] = {.lex_state = 0}, [1462] = {.lex_state = 53}, - [1463] = {.lex_state = 50}, + [1463] = {.lex_state = 53}, [1464] = {.lex_state = 53}, [1465] = {.lex_state = 53}, - [1466] = {.lex_state = 53}, - [1467] = {.lex_state = 53}, - [1468] = {.lex_state = 53}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 56}, + [1468] = {.lex_state = 56}, [1469] = {.lex_state = 120}, [1470] = {.lex_state = 120}, - [1471] = {.lex_state = 53}, - [1472] = {.lex_state = 53}, - [1473] = {.lex_state = 53}, + [1471] = {.lex_state = 56}, + [1472] = {.lex_state = 56}, + [1473] = {.lex_state = 56}, [1474] = {.lex_state = 120}, - [1475] = {.lex_state = 53}, - [1476] = {.lex_state = 56}, - [1477] = {.lex_state = 0}, + [1475] = {.lex_state = 56}, + [1476] = {.lex_state = 50}, + [1477] = {.lex_state = 53}, [1478] = {.lex_state = 53}, - [1479] = {.lex_state = 0}, + [1479] = {.lex_state = 56}, [1480] = {.lex_state = 56}, - [1481] = {.lex_state = 120}, - [1482] = {.lex_state = 56}, - [1483] = {.lex_state = 56}, - [1484] = {.lex_state = 120}, + [1481] = {.lex_state = 53}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 120}, + [1484] = {.lex_state = 53}, [1485] = {.lex_state = 56}, - [1486] = {.lex_state = 120}, - [1487] = {.lex_state = 50}, + [1486] = {.lex_state = 56}, + [1487] = {.lex_state = 120}, [1488] = {.lex_state = 56}, - [1489] = {.lex_state = 56}, - [1490] = {.lex_state = 56}, + [1489] = {.lex_state = 53}, + [1490] = {.lex_state = 0}, [1491] = {.lex_state = 53}, [1492] = {.lex_state = 53}, - [1493] = {.lex_state = 56}, - [1494] = {.lex_state = 53}, - [1495] = {.lex_state = 120}, - [1496] = {.lex_state = 56}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 56}, + [1493] = {.lex_state = 53}, + [1494] = {.lex_state = 50}, + [1495] = {.lex_state = 53}, + [1496] = {.lex_state = 53}, + [1497] = {.lex_state = 53}, + [1498] = {.lex_state = 53}, [1499] = {.lex_state = 53}, [1500] = {.lex_state = 53}, [1501] = {.lex_state = 53}, @@ -11061,113 +11039,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1509] = {.lex_state = 53}, [1510] = {.lex_state = 53}, [1511] = {.lex_state = 53}, - [1512] = {.lex_state = 53}, + [1512] = {.lex_state = 45}, [1513] = {.lex_state = 53}, [1514] = {.lex_state = 53}, [1515] = {.lex_state = 53}, - [1516] = {.lex_state = 45}, - [1517] = {.lex_state = 50}, + [1516] = {.lex_state = 53}, + [1517] = {.lex_state = 53}, [1518] = {.lex_state = 53}, - [1519] = {.lex_state = 53}, - [1520] = {.lex_state = 53}, + [1519] = {.lex_state = 30}, + [1520] = {.lex_state = 32}, [1521] = {.lex_state = 53}, - [1522] = {.lex_state = 53}, - [1523] = {.lex_state = 53}, - [1524] = {.lex_state = 53}, - [1525] = {.lex_state = 53}, - [1526] = {.lex_state = 53}, - [1527] = {.lex_state = 30}, - [1528] = {.lex_state = 32}, - [1529] = {.lex_state = 50}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 53}, - [1534] = {.lex_state = 50}, - [1535] = {.lex_state = 50}, - [1536] = {.lex_state = 45}, - [1537] = {.lex_state = 37}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 53}, - [1540] = {.lex_state = 37}, - [1541] = {.lex_state = 32}, + [1522] = {.lex_state = 30}, + [1523] = {.lex_state = 50}, + [1524] = {.lex_state = 33}, + [1525] = {.lex_state = 33}, + [1526] = {.lex_state = 50}, + [1527] = {.lex_state = 120}, + [1528] = {.lex_state = 33}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 30}, + [1531] = {.lex_state = 32}, + [1532] = {.lex_state = 32}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 33}, + [1535] = {.lex_state = 53}, + [1536] = {.lex_state = 53}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 32}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, [1542] = {.lex_state = 53}, [1543] = {.lex_state = 53}, - [1544] = {.lex_state = 53}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 53}, - [1547] = {.lex_state = 120}, + [1544] = {.lex_state = 33}, + [1545] = {.lex_state = 45}, + [1546] = {.lex_state = 50}, + [1547] = {.lex_state = 32}, [1548] = {.lex_state = 53}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 50}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 53}, - [1553] = {.lex_state = 30}, - [1554] = {.lex_state = 37}, - [1555] = {.lex_state = 120}, - [1556] = {.lex_state = 32}, - [1557] = {.lex_state = 30}, - [1558] = {.lex_state = 37}, - [1559] = {.lex_state = 32}, - [1560] = {.lex_state = 32}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 32}, + [1550] = {.lex_state = 53}, + [1551] = {.lex_state = 120}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 32}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 53}, + [1557] = {.lex_state = 32}, + [1558] = {.lex_state = 33}, + [1559] = {.lex_state = 33}, + [1560] = {.lex_state = 50}, + [1561] = {.lex_state = 53}, + [1562] = {.lex_state = 30}, [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 30}, - [1565] = {.lex_state = 37}, + [1564] = {.lex_state = 53}, + [1565] = {.lex_state = 0}, [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 32}, - [1568] = {.lex_state = 53}, - [1569] = {.lex_state = 37}, - [1570] = {.lex_state = 37}, + [1567] = {.lex_state = 35}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 45}, [1571] = {.lex_state = 0}, [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 53}, - [1574] = {.lex_state = 0}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 45}, [1575] = {.lex_state = 0}, [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 34}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 45}, + [1578] = {.lex_state = 0}, + [1579] = {.lex_state = 45}, + [1580] = {.lex_state = 45}, + [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 45}, + [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, + [1585] = {.lex_state = 45}, [1586] = {.lex_state = 0}, [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 53}, - [1589] = {.lex_state = 53}, - [1590] = {.lex_state = 45}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 45}, + [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, + [1599] = {.lex_state = 35}, [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, + [1602] = {.lex_state = 35}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, + [1604] = {.lex_state = 45}, [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 0}, + [1607] = {.lex_state = 45}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 53}, - [1611] = {.lex_state = 53}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, [1612] = {.lex_state = 0}, [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 34}, + [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, + [1618] = {.lex_state = 30}, [1619] = {.lex_state = 0}, [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, @@ -11185,393 +11163,385 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1633] = {.lex_state = 0}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 53}, + [1636] = {.lex_state = 0}, [1637] = {.lex_state = 0}, [1638] = {.lex_state = 0}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, + [1641] = {.lex_state = 30}, [1642] = {.lex_state = 0}, [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, + [1644] = {.lex_state = 53}, [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, + [1646] = {.lex_state = 53}, [1647] = {.lex_state = 0}, [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, + [1649] = {.lex_state = 53}, [1650] = {.lex_state = 0}, [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 30}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 53}, - [1655] = {.lex_state = 34}, - [1656] = {.lex_state = 45}, - [1657] = {.lex_state = 45}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 53}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 0}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, + [1659] = {.lex_state = 30}, [1660] = {.lex_state = 0}, [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 45}, + [1662] = {.lex_state = 0}, [1663] = {.lex_state = 0}, [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 30}, - [1666] = {.lex_state = 0}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 53}, [1667] = {.lex_state = 0}, [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, + [1670] = {.lex_state = 53}, [1671] = {.lex_state = 0}, [1672] = {.lex_state = 0}, [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 0}, + [1674] = {.lex_state = 53}, + [1675] = {.lex_state = 35}, [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 30}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 53}, - [1682] = {.lex_state = 0}, + [1679] = {.lex_state = 34}, + [1680] = {.lex_state = 34}, + [1681] = {.lex_state = 120}, + [1682] = {.lex_state = 34}, [1683] = {.lex_state = 0}, [1684] = {.lex_state = 34}, - [1685] = {.lex_state = 0}, + [1685] = {.lex_state = 34}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, + [1687] = {.lex_state = 34}, [1688] = {.lex_state = 0}, [1689] = {.lex_state = 120}, - [1690] = {.lex_state = 33}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 33}, + [1690] = {.lex_state = 0}, + [1691] = {.lex_state = 120}, + [1692] = {.lex_state = 34}, [1693] = {.lex_state = 120}, - [1694] = {.lex_state = 53}, + [1694] = {.lex_state = 45}, [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, + [1696] = {.lex_state = 34}, + [1697] = {.lex_state = 120}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 33}, - [1700] = {.lex_state = 33}, + [1699] = {.lex_state = 45}, + [1700] = {.lex_state = 0}, [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 120}, - [1703] = {.lex_state = 33}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 33}, - [1707] = {.lex_state = 33}, - [1708] = {.lex_state = 33}, - [1709] = {.lex_state = 33}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 33}, - [1712] = {.lex_state = 33}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 120}, - [1716] = {.lex_state = 120}, - [1717] = {.lex_state = 33}, - [1718] = {.lex_state = 33}, + [1702] = {.lex_state = 53}, + [1703] = {.lex_state = 0}, + [1704] = {.lex_state = 34}, + [1705] = {.lex_state = 34}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 53}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 34}, + [1711] = {.lex_state = 120}, + [1712] = {.lex_state = 0}, + [1713] = {.lex_state = 120}, + [1714] = {.lex_state = 120}, + [1715] = {.lex_state = 34}, + [1716] = {.lex_state = 53}, + [1717] = {.lex_state = 34}, + [1718] = {.lex_state = 0}, [1719] = {.lex_state = 53}, [1720] = {.lex_state = 120}, [1721] = {.lex_state = 120}, - [1722] = {.lex_state = 120}, - [1723] = {.lex_state = 33}, - [1724] = {.lex_state = 120}, + [1722] = {.lex_state = 53}, + [1723] = {.lex_state = 34}, + [1724] = {.lex_state = 0}, [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 120}, - [1727] = {.lex_state = 45}, - [1728] = {.lex_state = 53}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 45}, - [1731] = {.lex_state = 33}, + [1726] = {.lex_state = 34}, + [1727] = {.lex_state = 34}, + [1728] = {.lex_state = 0}, + [1729] = {.lex_state = 120}, + [1730] = {.lex_state = 0}, + [1731] = {.lex_state = 120}, [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 53}, - [1735] = {.lex_state = 120}, - [1736] = {.lex_state = 120}, - [1737] = {.lex_state = 120}, - [1738] = {.lex_state = 120}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 120}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 53}, + [1733] = {.lex_state = 120}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 45}, + [1736] = {.lex_state = 0}, + [1737] = {.lex_state = 0}, + [1738] = {.lex_state = 53}, + [1739] = {.lex_state = 120}, + [1740] = {.lex_state = 120}, + [1741] = {.lex_state = 120}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 53}, + [1744] = {.lex_state = 0}, [1745] = {.lex_state = 120}, [1746] = {.lex_state = 120}, - [1747] = {.lex_state = 120}, + [1747] = {.lex_state = 0}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 53}, + [1749] = {.lex_state = 120}, + [1750] = {.lex_state = 34}, + [1751] = {.lex_state = 0}, [1752] = {.lex_state = 120}, [1753] = {.lex_state = 120}, - [1754] = {.lex_state = 120}, - [1755] = {.lex_state = 33}, - [1756] = {.lex_state = 53}, - [1757] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, + [1755] = {.lex_state = 120}, + [1756] = {.lex_state = 120}, + [1757] = {.lex_state = 120}, [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 120}, + [1760] = {.lex_state = 0}, [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 120}, - [1763] = {.lex_state = 120}, - [1764] = {.lex_state = 33}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 53}, + [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, + [1766] = {.lex_state = 120}, + [1767] = {.lex_state = 44}, [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, + [1769] = {.lex_state = 35}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 53}, + [1771] = {.lex_state = 0}, [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 120}, - [1774] = {.lex_state = 45}, - [1775] = {.lex_state = 44}, - [1776] = {.lex_state = 44}, - [1777] = {.lex_state = 44}, - [1778] = {.lex_state = 120}, - [1779] = {.lex_state = 44}, - [1780] = {.lex_state = 0}, + [1773] = {.lex_state = 35}, + [1774] = {.lex_state = 35}, + [1775] = {.lex_state = 0}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 35}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 35}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 44}, - [1783] = {.lex_state = 34}, - [1784] = {.lex_state = 34}, - [1785] = {.lex_state = 53}, - [1786] = {.lex_state = 34}, - [1787] = {.lex_state = 34}, + [1782] = {.lex_state = 0}, + [1783] = {.lex_state = 35}, + [1784] = {.lex_state = 35}, + [1785] = {.lex_state = 35}, + [1786] = {.lex_state = 120}, + [1787] = {.lex_state = 44}, [1788] = {.lex_state = 44}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 44}, - [1793] = {.lex_state = 44}, - [1794] = {.lex_state = 34}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 44}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 53}, - [1800] = {.lex_state = 34}, + [1789] = {.lex_state = 35}, + [1790] = {.lex_state = 53}, + [1791] = {.lex_state = 44}, + [1792] = {.lex_state = 35}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 53}, + [1795] = {.lex_state = 35}, + [1796] = {.lex_state = 35}, + [1797] = {.lex_state = 53}, + [1798] = {.lex_state = 35}, + [1799] = {.lex_state = 44}, + [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 34}, - [1803] = {.lex_state = 34}, - [1804] = {.lex_state = 44}, - [1805] = {.lex_state = 44}, - [1806] = {.lex_state = 34}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 44}, + [1804] = {.lex_state = 0}, + [1805] = {.lex_state = 35}, + [1806] = {.lex_state = 35}, [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 34}, + [1808] = {.lex_state = 35}, [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 34}, - [1813] = {.lex_state = 44}, + [1810] = {.lex_state = 53}, + [1811] = {.lex_state = 53}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 34}, - [1818] = {.lex_state = 44}, - [1819] = {.lex_state = 34}, - [1820] = {.lex_state = 34}, - [1821] = {.lex_state = 53}, - [1822] = {.lex_state = 34}, + [1815] = {.lex_state = 53}, + [1816] = {.lex_state = 35}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 53}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 44}, + [1822] = {.lex_state = 44}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 53}, - [1825] = {.lex_state = 53}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 34}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 44}, - [1830] = {.lex_state = 34}, - [1831] = {.lex_state = 44}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 53}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 35}, + [1827] = {.lex_state = 53}, + [1828] = {.lex_state = 44}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 44}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 53}, + [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 44}, + [1835] = {.lex_state = 35}, [1836] = {.lex_state = 44}, [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 53}, - [1843] = {.lex_state = 120}, - [1844] = {.lex_state = 34}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 44}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, + [1838] = {.lex_state = 44}, + [1839] = {.lex_state = 53}, + [1840] = {.lex_state = 44}, + [1841] = {.lex_state = 53}, + [1842] = {.lex_state = 44}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 44}, + [1845] = {.lex_state = 53}, + [1846] = {.lex_state = 120}, + [1847] = {.lex_state = 35}, + [1848] = {.lex_state = 120}, [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, + [1850] = {.lex_state = 44}, [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 53}, - [1853] = {.lex_state = 120}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 53}, + [1852] = {.lex_state = 0}, + [1853] = {.lex_state = 44}, + [1854] = {.lex_state = 53}, + [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 34}, + [1859] = {.lex_state = 53}, + [1860] = {.lex_state = 44}, + [1861] = {.lex_state = 0}, [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 120}, - [1865] = {.lex_state = 44}, + [1863] = {.lex_state = 44}, + [1864] = {.lex_state = 53}, + [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 53}, - [1868] = {.lex_state = 34}, - [1869] = {.lex_state = 53}, - [1870] = {.lex_state = 44}, + [1867] = {.lex_state = 44}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 53}, + [1872] = {.lex_state = 44}, [1873] = {.lex_state = 0}, [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 44}, - [1877] = {.lex_state = 53}, + [1876] = {.lex_state = 53}, + [1877] = {.lex_state = 35}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 34}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 34}, - [1882] = {.lex_state = 34}, + [1879] = {.lex_state = 53}, + [1880] = {.lex_state = 44}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 120}, [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 0}, + [1884] = {.lex_state = 35}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 44}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 53}, + [1886] = {.lex_state = 53}, + [1887] = {.lex_state = 0}, + [1888] = {.lex_state = 53}, + [1889] = {.lex_state = 0}, [1890] = {.lex_state = 53}, [1891] = {.lex_state = 44}, - [1892] = {.lex_state = 120}, - [1893] = {.lex_state = 44}, + [1892] = {.lex_state = 44}, + [1893] = {.lex_state = 53}, [1894] = {.lex_state = 44}, - [1895] = {.lex_state = 53}, - [1896] = {.lex_state = 44}, - [1897] = {.lex_state = 44}, - [1898] = {.lex_state = 34}, - [1899] = {.lex_state = 44}, + [1895] = {.lex_state = 44}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 0}, + [1898] = {.lex_state = 120}, + [1899] = {.lex_state = 120}, [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 53}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 44}, - [1904] = {.lex_state = 53}, - [1905] = {.lex_state = 0}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 53}, + [1903] = {.lex_state = 53}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 44}, [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 44}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, + [1907] = {.lex_state = 35}, + [1908] = {.lex_state = 44}, + [1909] = {.lex_state = 44}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 53}, - [1915] = {.lex_state = 53}, - [1916] = {.lex_state = 53}, + [1911] = {.lex_state = 53}, + [1912] = {.lex_state = 120}, + [1913] = {.lex_state = 44}, + [1914] = {.lex_state = 35}, + [1915] = {.lex_state = 44}, + [1916] = {.lex_state = 44}, [1917] = {.lex_state = 44}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 44}, - [1920] = {.lex_state = 53}, - [1921] = {.lex_state = 0}, + [1918] = {.lex_state = 44}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 44}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 53}, - [1924] = {.lex_state = 44}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 44}, + [1923] = {.lex_state = 35}, + [1924] = {.lex_state = 53}, + [1925] = {.lex_state = 44}, + [1926] = {.lex_state = 0}, [1927] = {.lex_state = 44}, - [1928] = {.lex_state = 0}, + [1928] = {.lex_state = 53}, [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 53}, - [1932] = {.lex_state = 53}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 44}, + [1931] = {.lex_state = 0}, + [1932] = {.lex_state = 44}, + [1933] = {.lex_state = 44}, + [1934] = {.lex_state = 0}, [1935] = {.lex_state = 53}, - [1936] = {.lex_state = 44}, + [1936] = {.lex_state = 53}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 53}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 34}, + [1939] = {.lex_state = 35}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 53}, + [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 53}, - [1946] = {.lex_state = 53}, - [1947] = {.lex_state = 44}, - [1948] = {.lex_state = 34}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 53}, - [1952] = {.lex_state = 120}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 120}, + [1947] = {.lex_state = 35}, + [1948] = {.lex_state = 44}, + [1949] = {.lex_state = 44}, + [1950] = {.lex_state = 44}, + [1951] = {.lex_state = 0}, + [1952] = {.lex_state = 53}, [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 44}, - [1955] = {.lex_state = 34}, - [1956] = {.lex_state = 53}, + [1954] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 44}, + [1958] = {.lex_state = 53}, [1959] = {.lex_state = 0}, [1960] = {.lex_state = 53}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 44}, - [1963] = {.lex_state = 120}, + [1961] = {.lex_state = 35}, + [1962] = {.lex_state = 53}, + [1963] = {.lex_state = 53}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 53}, + [1965] = {.lex_state = 53}, + [1966] = {.lex_state = 44}, [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 53}, - [1970] = {.lex_state = 53}, - [1971] = {.lex_state = 53}, - [1972] = {.lex_state = 44}, + [1968] = {.lex_state = 44}, + [1969] = {.lex_state = 120}, + [1970] = {.lex_state = 120}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 120}, [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 120}, - [1976] = {.lex_state = 44}, - [1977] = {.lex_state = 120}, - [1978] = {.lex_state = 120}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 44}, + [1974] = {.lex_state = 53}, + [1975] = {.lex_state = 0}, + [1976] = {.lex_state = 0}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 44}, + [1979] = {.lex_state = 44}, + [1980] = {.lex_state = 53}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0}, + [1982] = {.lex_state = 44}, [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 120}, - [1986] = {.lex_state = 44}, - [1987] = {.lex_state = 44}, - [1988] = {.lex_state = 53}, - [1989] = {.lex_state = 34}, + [1985] = {.lex_state = 53}, + [1986] = {.lex_state = 0}, + [1987] = {.lex_state = 0}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 0}, [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 120}, - [1992] = {.lex_state = 0}, + [1991] = {.lex_state = 0}, + [1992] = {.lex_state = 120}, [1993] = {.lex_state = 44}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 53}, - [1997] = {.lex_state = 0}, + [1994] = {.lex_state = 53}, + [1995] = {.lex_state = 53}, + [1996] = {.lex_state = 0}, + [1997] = {.lex_state = 35}, [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 120}, - [2001] = {.lex_state = 53}, + [2000] = {.lex_state = 0}, + [2001] = {.lex_state = 35}, [2002] = {.lex_state = 0}, [2003] = {.lex_state = 53}, [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 44}, - [2006] = {.lex_state = 34}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 0}, + [2005] = {.lex_state = 35}, + [2006] = {.lex_state = 44}, + [2007] = {.lex_state = 44}, + [2008] = {.lex_state = 120}, [2009] = {.lex_state = 44}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 53}, - [2012] = {.lex_state = 44}, - [2013] = {.lex_state = 34}, + [2010] = {.lex_state = 44}, + [2011] = {.lex_state = 120}, + [2012] = {.lex_state = 120}, + [2013] = {.lex_state = 120}, [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 44}, - [2016] = {.lex_state = 120}, - [2017] = {.lex_state = 44}, - [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 120}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 34}, - [2022] = {.lex_state = 120}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11730,7 +11700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1981), + [sym_translation_unit] = STATE(1820), [sym__top_level_item] = STATE(44), [sym_preproc_include] = STATE(44), [sym_preproc_def] = STATE(44), @@ -11739,26 +11709,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(338), + [sym__old_style_function_definition] = STATE(320), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1136), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1128), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(691), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(683), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(362), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(796), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(356), [sym__top_level_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -11772,36 +11742,36 @@ 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(1116), - [sym__string] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(935), - [sym_unary_expression] = STATE(1119), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_alignof_expression] = STATE(1119), - [sym_offsetof_expression] = STATE(1119), - [sym_generic_expression] = STATE(1119), - [sym_subscript_expression] = STATE(935), - [sym_call_expression] = STATE(935), - [sym_gnu_asm_expression] = STATE(1119), - [sym_extension_expression] = STATE(1119), - [sym_field_expression] = STATE(935), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(935), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(1119), + [sym_expression] = STATE(1101), + [sym__string] = STATE(1103), + [sym_conditional_expression] = STATE(1103), + [sym_assignment_expression] = STATE(1103), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(1103), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(1103), + [sym_cast_expression] = STATE(1103), + [sym_sizeof_expression] = STATE(1103), + [sym_alignof_expression] = STATE(1103), + [sym_offsetof_expression] = STATE(1103), + [sym_generic_expression] = STATE(1103), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(1103), + [sym_extension_expression] = STATE(1103), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(1103), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(1103), + [sym_concatenated_string] = STATE(1103), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(1103), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -11909,76 +11879,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(3), [sym_preproc_if] = STATE(3), [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(1894), - [sym_preproc_elif] = STATE(1894), - [sym_preproc_elifdef] = STATE(1894), + [sym_preproc_else] = STATE(1993), + [sym_preproc_elif] = STATE(1993), + [sym_preproc_elifdef] = STATE(1993), [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(3), [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(3), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -12092,76 +12062,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1893), - [sym_preproc_elif] = STATE(1893), - [sym_preproc_elifdef] = STATE(1893), + [sym_preproc_else] = STATE(1950), + [sym_preproc_elif] = STATE(1950), + [sym_preproc_elifdef] = STATE(1950), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -12275,76 +12245,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(5), [sym_preproc_if] = STATE(5), [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1846), - [sym_preproc_elif] = STATE(1846), - [sym_preproc_elifdef] = STATE(1846), + [sym_preproc_else] = STATE(1932), + [sym_preproc_elif] = STATE(1932), + [sym_preproc_elifdef] = STATE(1932), [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(5), [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(5), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -12458,76 +12428,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1936), - [sym_preproc_elif] = STATE(1936), - [sym_preproc_elifdef] = STATE(1936), + [sym_preproc_else] = STATE(1978), + [sym_preproc_elif] = STATE(1978), + [sym_preproc_elifdef] = STATE(1978), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -12641,76 +12611,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(8), [sym_preproc_if] = STATE(8), [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(1792), - [sym_preproc_elif] = STATE(1792), - [sym_preproc_elifdef] = STATE(1792), + [sym_preproc_else] = STATE(2009), + [sym_preproc_elif] = STATE(2009), + [sym_preproc_elifdef] = STATE(2009), [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(8), [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(8), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -12824,76 +12794,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(9), [sym_preproc_if] = STATE(9), [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1793), - [sym_preproc_elif] = STATE(1793), - [sym_preproc_elifdef] = STATE(1793), + [sym_preproc_else] = STATE(1791), + [sym_preproc_elif] = STATE(1791), + [sym_preproc_elifdef] = STATE(1791), [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(9), [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(9), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -13007,76 +12977,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1805), - [sym_preproc_elif] = STATE(1805), - [sym_preproc_elifdef] = STATE(1805), + [sym_preproc_else] = STATE(2006), + [sym_preproc_elif] = STATE(2006), + [sym_preproc_elifdef] = STATE(2006), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -13190,76 +13160,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2017), - [sym_preproc_elif] = STATE(2017), - [sym_preproc_elifdef] = STATE(2017), + [sym_preproc_else] = STATE(1979), + [sym_preproc_elif] = STATE(1979), + [sym_preproc_elifdef] = STATE(1979), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -13373,76 +13343,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(12), [sym_preproc_if] = STATE(12), [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1987), - [sym_preproc_elif] = STATE(1987), - [sym_preproc_elifdef] = STATE(1987), + [sym_preproc_else] = STATE(1803), + [sym_preproc_elif] = STATE(1803), + [sym_preproc_elifdef] = STATE(1803), [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(12), [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(12), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -13556,76 +13526,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(13), [sym_preproc_if] = STATE(13), [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1797), - [sym_preproc_elif] = STATE(1797), - [sym_preproc_elifdef] = STATE(1797), + [sym_preproc_else] = STATE(1840), + [sym_preproc_elif] = STATE(1840), + [sym_preproc_elifdef] = STATE(1840), [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(13), [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -13739,76 +13709,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1813), - [sym_preproc_elif] = STATE(1813), - [sym_preproc_elifdef] = STATE(1813), + [sym_preproc_else] = STATE(1842), + [sym_preproc_elif] = STATE(1842), + [sym_preproc_elifdef] = STATE(1842), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -13922,76 +13892,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1919), - [sym_preproc_elif] = STATE(1919), - [sym_preproc_elifdef] = STATE(1919), + [sym_preproc_else] = STATE(1880), + [sym_preproc_elif] = STATE(1880), + [sym_preproc_elifdef] = STATE(1880), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -14105,76 +14075,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1924), - [sym_preproc_elif] = STATE(1924), - [sym_preproc_elifdef] = STATE(1924), + [sym_preproc_else] = STATE(1917), + [sym_preproc_elif] = STATE(1917), + [sym_preproc_elifdef] = STATE(1917), [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -14288,76 +14258,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1865), - [sym_preproc_elif] = STATE(1865), - [sym_preproc_elifdef] = STATE(1865), + [sym_preproc_else] = STATE(1844), + [sym_preproc_elif] = STATE(1844), + [sym_preproc_elifdef] = STATE(1844), [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -14471,76 +14441,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1876), - [sym_preproc_elif] = STATE(1876), - [sym_preproc_elifdef] = STATE(1876), + [sym_preproc_else] = STATE(1850), + [sym_preproc_elif] = STATE(1850), + [sym_preproc_elifdef] = STATE(1850), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -14654,76 +14624,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1976), - [sym_preproc_elif] = STATE(1976), - [sym_preproc_elifdef] = STATE(1976), + [sym_preproc_else] = STATE(1948), + [sym_preproc_elif] = STATE(1948), + [sym_preproc_elifdef] = STATE(1948), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -14837,76 +14807,76 @@ 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(1917), - [sym_preproc_elif] = STATE(1917), - [sym_preproc_elifdef] = STATE(1917), + [sym_preproc_else] = STATE(1867), + [sym_preproc_elif] = STATE(1867), + [sym_preproc_elifdef] = STATE(1867), [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -15020,76 +14990,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(21), [sym_preproc_if] = STATE(21), [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(1958), - [sym_preproc_elif] = STATE(1958), - [sym_preproc_elifdef] = STATE(1958), + [sym_preproc_else] = STATE(1925), + [sym_preproc_elif] = STATE(1925), + [sym_preproc_elifdef] = STATE(1925), [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(21), [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -15203,76 +15173,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1962), - [sym_preproc_elif] = STATE(1962), - [sym_preproc_elifdef] = STATE(1962), + [sym_preproc_else] = STATE(1933), + [sym_preproc_elif] = STATE(1933), + [sym_preproc_elifdef] = STATE(1933), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -15386,76 +15356,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2009), - [sym_preproc_elif] = STATE(2009), - [sym_preproc_elifdef] = STATE(2009), + [sym_preproc_else] = STATE(1968), + [sym_preproc_elif] = STATE(1968), + [sym_preproc_elifdef] = STATE(1968), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -15570,72 +15540,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(131), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(782), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(137), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(203), [aux_sym_preproc_include_token1] = ACTIONS(206), [aux_sym_preproc_def_token1] = ACTIONS(209), @@ -15742,80 +15712,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym__block_item] = STATE(31), - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(25), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(25), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -15918,263 +15888,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(36), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym__old_style_function_definition] = STATE(282), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1133), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(688), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(36), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(408), - [aux_sym_preproc_include_token1] = ACTIONS(411), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(423), - [anon_sym_LPAREN2] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(232), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym___extension__] = ACTIONS(429), - [anon_sym_typedef] = ACTIONS(432), - [anon_sym_extern] = ACTIONS(435), - [anon_sym___attribute__] = ACTIONS(247), - [anon_sym___attribute] = ACTIONS(247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(250), - [anon_sym___declspec] = ACTIONS(253), - [anon_sym___cdecl] = ACTIONS(256), - [anon_sym___clrcall] = ACTIONS(256), - [anon_sym___stdcall] = ACTIONS(256), - [anon_sym___fastcall] = ACTIONS(256), - [anon_sym___thiscall] = ACTIONS(256), - [anon_sym___vectorcall] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_signed] = ACTIONS(262), - [anon_sym_unsigned] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_static] = ACTIONS(265), - [anon_sym_auto] = ACTIONS(265), - [anon_sym_register] = ACTIONS(265), - [anon_sym_inline] = ACTIONS(265), - [anon_sym___inline] = ACTIONS(265), - [anon_sym___inline__] = ACTIONS(265), - [anon_sym___forceinline] = ACTIONS(265), - [anon_sym_thread_local] = ACTIONS(265), - [anon_sym___thread] = ACTIONS(265), - [anon_sym_const] = ACTIONS(268), - [anon_sym_constexpr] = ACTIONS(268), - [anon_sym_volatile] = ACTIONS(268), - [anon_sym_restrict] = ACTIONS(268), - [anon_sym___restrict__] = ACTIONS(268), - [anon_sym__Atomic] = ACTIONS(268), - [anon_sym__Noreturn] = ACTIONS(268), - [anon_sym_noreturn] = ACTIONS(268), - [anon_sym__Nonnull] = ACTIONS(268), - [anon_sym_alignas] = ACTIONS(271), - [anon_sym__Alignas] = ACTIONS(271), - [sym_primitive_type] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(277), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_union] = ACTIONS(283), - [anon_sym_if] = ACTIONS(443), - [anon_sym_switch] = ACTIONS(446), - [anon_sym_case] = ACTIONS(449), - [anon_sym_default] = ACTIONS(452), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(458), - [anon_sym_for] = ACTIONS(461), - [anon_sym_return] = ACTIONS(464), - [anon_sym_break] = ACTIONS(467), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_goto] = ACTIONS(473), - [anon_sym___try] = ACTIONS(476), - [anon_sym___leave] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(325), - [anon_sym_PLUS_PLUS] = ACTIONS(325), - [anon_sym_sizeof] = ACTIONS(328), - [anon_sym___alignof__] = ACTIONS(331), - [anon_sym___alignof] = ACTIONS(331), - [anon_sym__alignof] = ACTIONS(331), - [anon_sym_alignof] = ACTIONS(331), - [anon_sym__Alignof] = ACTIONS(331), - [anon_sym_offsetof] = ACTIONS(334), - [anon_sym__Generic] = ACTIONS(337), - [anon_sym_asm] = ACTIONS(340), - [anon_sym___asm__] = ACTIONS(340), - [anon_sym___asm] = ACTIONS(340), - [sym_number_literal] = ACTIONS(343), - [anon_sym_L_SQUOTE] = ACTIONS(346), - [anon_sym_u_SQUOTE] = ACTIONS(346), - [anon_sym_U_SQUOTE] = ACTIONS(346), - [anon_sym_u8_SQUOTE] = ACTIONS(346), - [anon_sym_SQUOTE] = ACTIONS(346), - [anon_sym_L_DQUOTE] = ACTIONS(349), - [anon_sym_u_DQUOTE] = ACTIONS(349), - [anon_sym_U_DQUOTE] = ACTIONS(349), - [anon_sym_u8_DQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_true] = ACTIONS(352), - [sym_false] = ACTIONS(352), - [anon_sym_NULL] = ACTIONS(355), - [anon_sym_nullptr] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - }, - [25] = { - [sym__block_item] = STATE(27), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(27), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(410), + [aux_sym_preproc_def_token1] = ACTIONS(412), + [aux_sym_preproc_if_token1] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [sym_preproc_directive] = ACTIONS(420), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16182,10 +15977,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(424), + [anon_sym_typedef] = ACTIONS(426), + [anon_sym_extern] = ACTIONS(428), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), @@ -16196,8 +15991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(41), [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(430), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -16226,19 +16020,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [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___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -16269,257 +16063,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym__block_item] = STATE(40), - [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__old_style_function_definition] = STATE(286), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(710), + [25] = { + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(798), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(287), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_if_token2] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [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(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(504), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [27] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -16549,7 +16167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(458), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -16621,81 +16239,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [28] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [26] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(282), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1133), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(688), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(460), + [aux_sym_preproc_include_token1] = ACTIONS(463), + [aux_sym_preproc_def_token1] = ACTIONS(466), + [aux_sym_preproc_if_token1] = ACTIONS(469), + [aux_sym_preproc_if_token2] = ACTIONS(215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(472), + [sym_preproc_directive] = ACTIONS(475), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(226), + [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(232), + [anon_sym_AMP] = ACTIONS(232), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym___extension__] = ACTIONS(481), + [anon_sym_typedef] = ACTIONS(484), + [anon_sym_extern] = ACTIONS(487), + [anon_sym___attribute__] = ACTIONS(247), + [anon_sym___attribute] = ACTIONS(247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(250), + [anon_sym___declspec] = ACTIONS(253), + [anon_sym___cdecl] = ACTIONS(256), + [anon_sym___clrcall] = ACTIONS(256), + [anon_sym___stdcall] = ACTIONS(256), + [anon_sym___fastcall] = ACTIONS(256), + [anon_sym___thiscall] = ACTIONS(256), + [anon_sym___vectorcall] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_signed] = ACTIONS(262), + [anon_sym_unsigned] = ACTIONS(262), + [anon_sym_long] = ACTIONS(262), + [anon_sym_short] = ACTIONS(262), + [anon_sym_static] = ACTIONS(265), + [anon_sym_auto] = ACTIONS(265), + [anon_sym_register] = ACTIONS(265), + [anon_sym_inline] = ACTIONS(265), + [anon_sym___inline] = ACTIONS(265), + [anon_sym___inline__] = ACTIONS(265), + [anon_sym___forceinline] = ACTIONS(265), + [anon_sym_thread_local] = ACTIONS(265), + [anon_sym___thread] = ACTIONS(265), + [anon_sym_const] = ACTIONS(268), + [anon_sym_constexpr] = ACTIONS(268), + [anon_sym_volatile] = ACTIONS(268), + [anon_sym_restrict] = ACTIONS(268), + [anon_sym___restrict__] = ACTIONS(268), + [anon_sym__Atomic] = ACTIONS(268), + [anon_sym__Noreturn] = ACTIONS(268), + [anon_sym_noreturn] = ACTIONS(268), + [anon_sym__Nonnull] = ACTIONS(268), + [anon_sym_alignas] = ACTIONS(271), + [anon_sym__Alignas] = ACTIONS(271), + [sym_primitive_type] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(277), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_union] = ACTIONS(283), + [anon_sym_if] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(496), + [anon_sym_case] = ACTIONS(499), + [anon_sym_default] = ACTIONS(502), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(508), + [anon_sym_for] = ACTIONS(511), + [anon_sym_return] = ACTIONS(514), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(526), + [anon_sym___leave] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(325), + [anon_sym_sizeof] = ACTIONS(328), + [anon_sym___alignof__] = ACTIONS(331), + [anon_sym___alignof] = ACTIONS(331), + [anon_sym__alignof] = ACTIONS(331), + [anon_sym_alignof] = ACTIONS(331), + [anon_sym__Alignof] = ACTIONS(331), + [anon_sym_offsetof] = ACTIONS(334), + [anon_sym__Generic] = ACTIONS(337), + [anon_sym_asm] = ACTIONS(340), + [anon_sym___asm__] = ACTIONS(340), + [anon_sym___asm] = ACTIONS(340), + [sym_number_literal] = ACTIONS(343), + [anon_sym_L_SQUOTE] = ACTIONS(346), + [anon_sym_u_SQUOTE] = ACTIONS(346), + [anon_sym_U_SQUOTE] = ACTIONS(346), + [anon_sym_u8_SQUOTE] = ACTIONS(346), + [anon_sym_SQUOTE] = ACTIONS(346), + [anon_sym_L_DQUOTE] = ACTIONS(349), + [anon_sym_u_DQUOTE] = ACTIONS(349), + [anon_sym_U_DQUOTE] = ACTIONS(349), + [anon_sym_u8_DQUOTE] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_true] = ACTIONS(352), + [sym_false] = ACTIONS(352), + [anon_sym_NULL] = ACTIONS(355), + [anon_sym_nullptr] = ACTIONS(355), + [sym_comment] = ACTIONS(3), + }, + [27] = { + [sym__block_item] = STATE(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__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(28), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -16725,7 +16519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(532), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -16797,81 +16591,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [28] = { + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -16901,7 +16695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(534), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -16973,81 +16767,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [30] = { - [sym__block_item] = STATE(32), - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [29] = { + [sym__block_item] = STATE(40), + [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__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -17077,7 +16871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(536), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -17149,81 +16943,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [30] = { + [sym__block_item] = STATE(32), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(32), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -17253,7 +17047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(538), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -17325,81 +17119,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, + [31] = { + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(540), + [aux_sym_preproc_include_token1] = ACTIONS(543), + [aux_sym_preproc_def_token1] = ACTIONS(546), + [aux_sym_preproc_if_token1] = ACTIONS(549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(552), + [sym_preproc_directive] = ACTIONS(555), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(226), + [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(232), + [anon_sym_AMP] = ACTIONS(232), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym___extension__] = ACTIONS(561), + [anon_sym_typedef] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(567), + [anon_sym___attribute__] = ACTIONS(247), + [anon_sym___attribute] = ACTIONS(247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(250), + [anon_sym___declspec] = ACTIONS(253), + [anon_sym___cdecl] = ACTIONS(256), + [anon_sym___clrcall] = ACTIONS(256), + [anon_sym___stdcall] = ACTIONS(256), + [anon_sym___fastcall] = ACTIONS(256), + [anon_sym___thiscall] = ACTIONS(256), + [anon_sym___vectorcall] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_signed] = ACTIONS(262), + [anon_sym_unsigned] = ACTIONS(262), + [anon_sym_long] = ACTIONS(262), + [anon_sym_short] = ACTIONS(262), + [anon_sym_static] = ACTIONS(265), + [anon_sym_auto] = ACTIONS(265), + [anon_sym_register] = ACTIONS(265), + [anon_sym_inline] = ACTIONS(265), + [anon_sym___inline] = ACTIONS(265), + [anon_sym___inline__] = ACTIONS(265), + [anon_sym___forceinline] = ACTIONS(265), + [anon_sym_thread_local] = ACTIONS(265), + [anon_sym___thread] = ACTIONS(265), + [anon_sym_const] = ACTIONS(268), + [anon_sym_constexpr] = ACTIONS(268), + [anon_sym_volatile] = ACTIONS(268), + [anon_sym_restrict] = ACTIONS(268), + [anon_sym___restrict__] = ACTIONS(268), + [anon_sym__Atomic] = ACTIONS(268), + [anon_sym__Noreturn] = ACTIONS(268), + [anon_sym_noreturn] = ACTIONS(268), + [anon_sym__Nonnull] = ACTIONS(268), + [anon_sym_alignas] = ACTIONS(271), + [anon_sym__Alignas] = ACTIONS(271), + [sym_primitive_type] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(277), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_union] = ACTIONS(283), + [anon_sym_if] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_case] = ACTIONS(581), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(587), + [anon_sym_do] = ACTIONS(590), + [anon_sym_for] = ACTIONS(593), + [anon_sym_return] = ACTIONS(596), + [anon_sym_break] = ACTIONS(599), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(605), + [anon_sym___try] = ACTIONS(608), + [anon_sym___leave] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(325), + [anon_sym_sizeof] = ACTIONS(328), + [anon_sym___alignof__] = ACTIONS(331), + [anon_sym___alignof] = ACTIONS(331), + [anon_sym__alignof] = ACTIONS(331), + [anon_sym_alignof] = ACTIONS(331), + [anon_sym__Alignof] = ACTIONS(331), + [anon_sym_offsetof] = ACTIONS(334), + [anon_sym__Generic] = ACTIONS(337), + [anon_sym_asm] = ACTIONS(340), + [anon_sym___asm__] = ACTIONS(340), + [anon_sym___asm] = ACTIONS(340), + [sym_number_literal] = ACTIONS(343), + [anon_sym_L_SQUOTE] = ACTIONS(346), + [anon_sym_u_SQUOTE] = ACTIONS(346), + [anon_sym_U_SQUOTE] = ACTIONS(346), + [anon_sym_u8_SQUOTE] = ACTIONS(346), + [anon_sym_SQUOTE] = ACTIONS(346), + [anon_sym_L_DQUOTE] = ACTIONS(349), + [anon_sym_u_DQUOTE] = ACTIONS(349), + [anon_sym_U_DQUOTE] = ACTIONS(349), + [anon_sym_u8_DQUOTE] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_true] = ACTIONS(352), + [sym_false] = ACTIONS(352), + [anon_sym_NULL] = ACTIONS(355), + [anon_sym_nullptr] = ACTIONS(355), + [sym_comment] = ACTIONS(3), + }, [32] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -17429,7 +17399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(614), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -17502,80 +17472,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [33] = { - [sym__block_item] = STATE(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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(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__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(34), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -17605,7 +17575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(616), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -17678,80 +17648,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [34] = { - [sym__block_item] = STATE(29), - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(29), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -17781,7 +17751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(618), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -17854,88 +17824,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [35] = { - [sym__block_item] = STATE(26), - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(286), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(710), + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(695), [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(798), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(287), - [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_if_token2] = ACTIONS(550), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(37), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(358), + [aux_sym_preproc_include_token1] = ACTIONS(360), + [aux_sym_preproc_def_token1] = ACTIONS(362), + [aux_sym_preproc_if_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(366), + [sym_preproc_directive] = ACTIONS(368), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17943,10 +17912,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym___extension__] = ACTIONS(372), + [anon_sym_typedef] = ACTIONS(374), + [anon_sym_extern] = ACTIONS(376), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), @@ -17957,7 +17926,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(41), [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(620), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -17986,19 +17956,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_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___try] = ACTIONS(404), + [anon_sym___leave] = ACTIONS(406), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -18030,87 +18000,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [36] = { - [sym__block_item] = STATE(38), - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(38), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(282), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1133), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(688), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(311), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(408), + [aux_sym_preproc_include_token1] = ACTIONS(410), + [aux_sym_preproc_def_token1] = ACTIONS(412), + [aux_sym_preproc_if_token1] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [sym_preproc_directive] = ACTIONS(420), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18118,10 +18089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(424), + [anon_sym_typedef] = ACTIONS(426), + [anon_sym_extern] = ACTIONS(428), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), @@ -18132,8 +18103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(41), [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(430), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -18162,19 +18132,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [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___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -18206,80 +18176,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -18309,7 +18279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(624), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -18382,80 +18352,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(39), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(39), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -18485,7 +18455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(626), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -18558,80 +18528,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -18661,7 +18631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(41), [anon_sym___vectorcall] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(628), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -18734,256 +18704,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [40] = { - [sym__block_item] = STATE(40), - [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__old_style_function_definition] = STATE(286), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(710), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(798), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(287), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(560), - [aux_sym_preproc_include_token1] = ACTIONS(563), - [aux_sym_preproc_def_token1] = ACTIONS(566), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [aux_sym_preproc_if_token2] = ACTIONS(215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(572), - [aux_sym_preproc_ifdef_token2] = ACTIONS(572), - [sym_preproc_directive] = ACTIONS(575), - [anon_sym_LPAREN2] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(232), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym___extension__] = ACTIONS(581), - [anon_sym_typedef] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(587), - [anon_sym___attribute__] = ACTIONS(247), - [anon_sym___attribute] = ACTIONS(247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(250), - [anon_sym___declspec] = ACTIONS(253), - [anon_sym___cdecl] = ACTIONS(256), - [anon_sym___clrcall] = ACTIONS(256), - [anon_sym___stdcall] = ACTIONS(256), - [anon_sym___fastcall] = ACTIONS(256), - [anon_sym___thiscall] = ACTIONS(256), - [anon_sym___vectorcall] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_signed] = ACTIONS(262), - [anon_sym_unsigned] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_static] = ACTIONS(265), - [anon_sym_auto] = ACTIONS(265), - [anon_sym_register] = ACTIONS(265), - [anon_sym_inline] = ACTIONS(265), - [anon_sym___inline] = ACTIONS(265), - [anon_sym___inline__] = ACTIONS(265), - [anon_sym___forceinline] = ACTIONS(265), - [anon_sym_thread_local] = ACTIONS(265), - [anon_sym___thread] = ACTIONS(265), - [anon_sym_const] = ACTIONS(268), - [anon_sym_constexpr] = ACTIONS(268), - [anon_sym_volatile] = ACTIONS(268), - [anon_sym_restrict] = ACTIONS(268), - [anon_sym___restrict__] = ACTIONS(268), - [anon_sym__Atomic] = ACTIONS(268), - [anon_sym__Noreturn] = ACTIONS(268), - [anon_sym_noreturn] = ACTIONS(268), - [anon_sym__Nonnull] = ACTIONS(268), - [anon_sym_alignas] = ACTIONS(271), - [anon_sym__Alignas] = ACTIONS(271), - [sym_primitive_type] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(277), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_union] = ACTIONS(283), - [anon_sym_if] = ACTIONS(593), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(602), - [anon_sym_while] = ACTIONS(605), - [anon_sym_do] = ACTIONS(608), - [anon_sym_for] = ACTIONS(611), - [anon_sym_return] = ACTIONS(614), - [anon_sym_break] = ACTIONS(617), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(623), - [anon_sym___try] = ACTIONS(626), - [anon_sym___leave] = ACTIONS(629), - [anon_sym_DASH_DASH] = ACTIONS(325), - [anon_sym_PLUS_PLUS] = ACTIONS(325), - [anon_sym_sizeof] = ACTIONS(328), - [anon_sym___alignof__] = ACTIONS(331), - [anon_sym___alignof] = ACTIONS(331), - [anon_sym__alignof] = ACTIONS(331), - [anon_sym_alignof] = ACTIONS(331), - [anon_sym__Alignof] = ACTIONS(331), - [anon_sym_offsetof] = ACTIONS(334), - [anon_sym__Generic] = ACTIONS(337), - [anon_sym_asm] = ACTIONS(340), - [anon_sym___asm__] = ACTIONS(340), - [anon_sym___asm] = ACTIONS(340), - [sym_number_literal] = ACTIONS(343), - [anon_sym_L_SQUOTE] = ACTIONS(346), - [anon_sym_u_SQUOTE] = ACTIONS(346), - [anon_sym_U_SQUOTE] = ACTIONS(346), - [anon_sym_u8_SQUOTE] = ACTIONS(346), - [anon_sym_SQUOTE] = ACTIONS(346), - [anon_sym_L_DQUOTE] = ACTIONS(349), - [anon_sym_u_DQUOTE] = ACTIONS(349), - [anon_sym_U_DQUOTE] = ACTIONS(349), - [anon_sym_u8_DQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_true] = ACTIONS(352), - [sym_false] = ACTIONS(352), - [anon_sym_NULL] = ACTIONS(355), - [anon_sym_nullptr] = ACTIONS(355), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(358), + [aux_sym_preproc_include_token1] = ACTIONS(360), + [aux_sym_preproc_def_token1] = ACTIONS(362), + [aux_sym_preproc_if_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(366), + [sym_preproc_directive] = ACTIONS(368), + [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(370), + [anon_sym___extension__] = ACTIONS(372), + [anon_sym_typedef] = ACTIONS(374), + [anon_sym_extern] = ACTIONS(376), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(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___try] = ACTIONS(404), + [anon_sym___leave] = ACTIONS(406), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [41] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(42), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(42), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -19086,80 +19056,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [sym__block_item] = STATE(24), - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(268), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1139), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(666), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(801), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(269), + [sym_statement] = STATE(31), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(358), [aux_sym_preproc_include_token1] = ACTIONS(360), [aux_sym_preproc_def_token1] = ACTIONS(362), @@ -19270,26 +19240,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(338), + [sym__old_style_function_definition] = STATE(320), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1136), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1128), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(691), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(683), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(362), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(796), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(356), [sym__top_level_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), @@ -19303,36 +19273,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1116), - [sym__string] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(935), - [sym_unary_expression] = STATE(1119), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_alignof_expression] = STATE(1119), - [sym_offsetof_expression] = STATE(1119), - [sym_generic_expression] = STATE(1119), - [sym_subscript_expression] = STATE(935), - [sym_call_expression] = STATE(935), - [sym_gnu_asm_expression] = STATE(1119), - [sym_extension_expression] = STATE(1119), - [sym_field_expression] = STATE(935), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(935), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(1119), + [sym_expression] = STATE(1101), + [sym__string] = STATE(1103), + [sym_conditional_expression] = STATE(1103), + [sym_assignment_expression] = STATE(1103), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(1103), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(1103), + [sym_cast_expression] = STATE(1103), + [sym_sizeof_expression] = STATE(1103), + [sym_alignof_expression] = STATE(1103), + [sym_offsetof_expression] = STATE(1103), + [sym_generic_expression] = STATE(1103), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(1103), + [sym_extension_expression] = STATE(1103), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(1103), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(1103), + [sym_concatenated_string] = STATE(1103), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(1103), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [aux_sym_preproc_include_token1] = ACTIONS(641), @@ -19441,26 +19411,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(338), + [sym__old_style_function_definition] = STATE(320), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1136), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1128), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(691), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(683), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(362), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(796), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(356), [sym__top_level_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), @@ -19474,36 +19444,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1116), - [sym__string] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(935), - [sym_unary_expression] = STATE(1119), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_alignof_expression] = STATE(1119), - [sym_offsetof_expression] = STATE(1119), - [sym_generic_expression] = STATE(1119), - [sym_subscript_expression] = STATE(935), - [sym_call_expression] = STATE(935), - [sym_gnu_asm_expression] = STATE(1119), - [sym_extension_expression] = STATE(1119), - [sym_field_expression] = STATE(935), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(935), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(1119), + [sym_expression] = STATE(1101), + [sym__string] = STATE(1103), + [sym_conditional_expression] = STATE(1103), + [sym_assignment_expression] = STATE(1103), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(1103), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(1103), + [sym_cast_expression] = STATE(1103), + [sym_sizeof_expression] = STATE(1103), + [sym_alignof_expression] = STATE(1103), + [sym_offsetof_expression] = STATE(1103), + [sym_generic_expression] = STATE(1103), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(1103), + [sym_extension_expression] = STATE(1103), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(1103), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(1103), + [sym_concatenated_string] = STATE(1103), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(1103), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [ts_builtin_sym_end] = ACTIONS(785), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -19604,66 +19574,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [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_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(47), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1142), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [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_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(46), [sym_identifier] = ACTIONS(787), [aux_sym_preproc_include_token1] = ACTIONS(789), [aux_sym_preproc_def_token1] = ACTIONS(789), @@ -19773,20 +19743,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [46] = { [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1142), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), [sym_attributed_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -19801,35 +19771,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(48), [sym_seh_try_statement] = STATE(48), [sym_seh_leave_statement] = STATE(48), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(48), [sym_identifier] = ACTIONS(787), [aux_sym_preproc_include_token1] = ACTIONS(791), @@ -19940,20 +19910,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [47] = { [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1142), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), [sym_attributed_statement] = STATE(49), [sym_labeled_statement] = STATE(49), [sym_expression_statement] = STATE(49), @@ -19968,35 +19938,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(49), [sym_seh_try_statement] = STATE(49), [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(49), [sym_identifier] = ACTIONS(787), [aux_sym_preproc_include_token1] = ACTIONS(793), @@ -20105,78 +20075,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [48] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(49), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1142), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(795), + [aux_sym_preproc_include_token1] = ACTIONS(798), + [aux_sym_preproc_def_token1] = ACTIONS(798), + [aux_sym_preproc_if_token1] = ACTIONS(798), + [aux_sym_preproc_if_token2] = ACTIONS(798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(798), + [aux_sym_preproc_else_token1] = ACTIONS(798), + [aux_sym_preproc_elif_token1] = ACTIONS(798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(798), + [aux_sym_preproc_elifdef_token2] = ACTIONS(798), + [sym_preproc_directive] = ACTIONS(798), + [anon_sym_LPAREN2] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym___extension__] = ACTIONS(815), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(821), + [anon_sym___attribute__] = ACTIONS(824), + [anon_sym___attribute] = ACTIONS(824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(827), + [anon_sym___declspec] = ACTIONS(830), + [anon_sym___cdecl] = ACTIONS(798), + [anon_sym___clrcall] = ACTIONS(798), + [anon_sym___stdcall] = ACTIONS(798), + [anon_sym___fastcall] = ACTIONS(798), + [anon_sym___thiscall] = ACTIONS(798), + [anon_sym___vectorcall] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_signed] = ACTIONS(836), + [anon_sym_unsigned] = ACTIONS(836), + [anon_sym_long] = ACTIONS(836), + [anon_sym_short] = ACTIONS(836), + [anon_sym_static] = ACTIONS(821), + [anon_sym_auto] = ACTIONS(821), + [anon_sym_register] = ACTIONS(821), + [anon_sym_inline] = ACTIONS(821), + [anon_sym___inline] = ACTIONS(821), + [anon_sym___inline__] = ACTIONS(821), + [anon_sym___forceinline] = ACTIONS(821), + [anon_sym_thread_local] = ACTIONS(821), + [anon_sym___thread] = ACTIONS(821), + [anon_sym_const] = ACTIONS(839), + [anon_sym_constexpr] = ACTIONS(839), + [anon_sym_volatile] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(839), + [anon_sym___restrict__] = ACTIONS(839), + [anon_sym__Atomic] = ACTIONS(839), + [anon_sym__Noreturn] = ACTIONS(839), + [anon_sym_noreturn] = ACTIONS(839), + [anon_sym__Nonnull] = ACTIONS(839), + [anon_sym_alignas] = ACTIONS(842), + [anon_sym__Alignas] = ACTIONS(842), + [sym_primitive_type] = ACTIONS(845), + [anon_sym_enum] = ACTIONS(848), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_union] = ACTIONS(854), + [anon_sym_if] = ACTIONS(857), + [anon_sym_else] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(860), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_while] = ACTIONS(863), + [anon_sym_do] = ACTIONS(866), + [anon_sym_for] = ACTIONS(869), + [anon_sym_return] = ACTIONS(872), + [anon_sym_break] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(878), + [anon_sym_goto] = ACTIONS(881), + [anon_sym___try] = ACTIONS(884), + [anon_sym___leave] = ACTIONS(887), + [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(890), + [anon_sym_sizeof] = ACTIONS(893), + [anon_sym___alignof__] = ACTIONS(896), + [anon_sym___alignof] = ACTIONS(896), + [anon_sym__alignof] = ACTIONS(896), + [anon_sym_alignof] = ACTIONS(896), + [anon_sym__Alignof] = ACTIONS(896), + [anon_sym_offsetof] = ACTIONS(899), + [anon_sym__Generic] = ACTIONS(902), + [anon_sym_asm] = ACTIONS(905), + [anon_sym___asm__] = ACTIONS(905), + [anon_sym___asm] = ACTIONS(905), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(911), + [anon_sym_u_SQUOTE] = ACTIONS(911), + [anon_sym_U_SQUOTE] = ACTIONS(911), + [anon_sym_u8_SQUOTE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(917), + [sym_false] = ACTIONS(917), + [anon_sym_NULL] = ACTIONS(920), + [anon_sym_nullptr] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [49] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1142), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(48), [sym_identifier] = ACTIONS(787), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_if_token2] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [aux_sym_preproc_else_token1] = ACTIONS(795), - [aux_sym_preproc_elif_token1] = ACTIONS(795), - [aux_sym_preproc_elifdef_token1] = ACTIONS(795), - [aux_sym_preproc_elifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_if_token2] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [aux_sym_preproc_else_token1] = ACTIONS(923), + [aux_sym_preproc_elif_token1] = ACTIONS(923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20192,12 +20329,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(133), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), @@ -20228,10 +20365,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(795), + [anon_sym_else] = ACTIONS(923), [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(145), [anon_sym_for] = ACTIONS(147), @@ -20271,242 +20408,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [49] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(797), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_if_token2] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [aux_sym_preproc_else_token1] = ACTIONS(800), - [aux_sym_preproc_elif_token1] = ACTIONS(800), - [aux_sym_preproc_elifdef_token1] = ACTIONS(800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym___extension__] = ACTIONS(817), - [anon_sym_typedef] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(859), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(865), - [anon_sym_do] = ACTIONS(868), - [anon_sym_for] = ACTIONS(871), - [anon_sym_return] = ACTIONS(874), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_goto] = ACTIONS(883), - [anon_sym___try] = ACTIONS(886), - [anon_sym___leave] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [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(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, [50] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1140), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(925), + [aux_sym_preproc_include_token1] = ACTIONS(791), + [aux_sym_preproc_def_token1] = ACTIONS(791), + [aux_sym_preproc_if_token1] = ACTIONS(791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(791), + [sym_preproc_directive] = ACTIONS(791), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20514,21 +20483,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym___extension__] = ACTIONS(372), + [anon_sym_typedef] = ACTIONS(374), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(791), + [anon_sym___clrcall] = ACTIONS(791), + [anon_sym___stdcall] = ACTIONS(791), + [anon_sym___fastcall] = ACTIONS(791), + [anon_sym___thiscall] = ACTIONS(791), + [anon_sym___vectorcall] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(927), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -20557,20 +20527,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym_if] = ACTIONS(382), + [anon_sym_else] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(384), + [anon_sym_case] = ACTIONS(791), + [anon_sym_default] = ACTIONS(791), + [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___try] = ACTIONS(404), + [anon_sym___leave] = ACTIONS(406), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -20602,74 +20572,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [51] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(927), - [aux_sym_preproc_include_token1] = ACTIONS(791), - [aux_sym_preproc_def_token1] = ACTIONS(791), - [aux_sym_preproc_if_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(791), - [sym_preproc_directive] = ACTIONS(791), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(931), + [aux_sym_preproc_include_token1] = ACTIONS(789), + [aux_sym_preproc_def_token1] = ACTIONS(789), + [aux_sym_preproc_if_token1] = ACTIONS(789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(789), + [sym_preproc_directive] = ACTIONS(789), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20677,7 +20647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(933), [anon_sym___extension__] = ACTIONS(29), [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(47), @@ -20685,12 +20655,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(791), - [anon_sym___clrcall] = ACTIONS(791), - [anon_sym___stdcall] = ACTIONS(791), - [anon_sym___fastcall] = ACTIONS(791), - [anon_sym___thiscall] = ACTIONS(791), - [anon_sym___vectorcall] = ACTIONS(791), + [anon_sym___cdecl] = ACTIONS(789), + [anon_sym___clrcall] = ACTIONS(789), + [anon_sym___stdcall] = ACTIONS(789), + [anon_sym___fastcall] = ACTIONS(789), + [anon_sym___thiscall] = ACTIONS(789), + [anon_sym___vectorcall] = ACTIONS(789), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), @@ -20721,10 +20691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(791), + [anon_sym_else] = ACTIONS(789), [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), + [anon_sym_case] = ACTIONS(789), + [anon_sym_default] = ACTIONS(789), [anon_sym_while] = ACTIONS(69), [anon_sym_do] = ACTIONS(71), [anon_sym_for] = ACTIONS(73), @@ -20732,8 +20702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -20767,20 +20737,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [52] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1140), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -20795,43 +20765,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(791), - [aux_sym_preproc_def_token1] = ACTIONS(791), - [aux_sym_preproc_if_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(791), - [sym_preproc_directive] = ACTIONS(791), + [sym_identifier] = ACTIONS(925), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20847,14 +20817,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(791), - [anon_sym___clrcall] = ACTIONS(791), - [anon_sym___stdcall] = ACTIONS(791), - [anon_sym___fastcall] = ACTIONS(791), - [anon_sym___thiscall] = ACTIONS(791), - [anon_sym___vectorcall] = ACTIONS(791), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(939), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -20884,10 +20854,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(791), + [anon_sym_else] = ACTIONS(923), [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), [anon_sym_while] = ACTIONS(390), [anon_sym_do] = ACTIONS(392), [anon_sym_for] = ACTIONS(394), @@ -20928,73 +20898,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [53] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1140), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(925), + [aux_sym_preproc_include_token1] = ACTIONS(789), + [aux_sym_preproc_def_token1] = ACTIONS(789), + [aux_sym_preproc_if_token1] = ACTIONS(789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(789), + [sym_preproc_directive] = ACTIONS(789), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21010,14 +20980,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), + [anon_sym___cdecl] = ACTIONS(789), + [anon_sym___clrcall] = ACTIONS(789), + [anon_sym___stdcall] = ACTIONS(789), + [anon_sym___fastcall] = ACTIONS(789), + [anon_sym___thiscall] = ACTIONS(789), + [anon_sym___vectorcall] = ACTIONS(789), [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(929), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -21047,10 +21017,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(793), + [anon_sym_else] = ACTIONS(789), [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), + [anon_sym_case] = ACTIONS(789), + [anon_sym_default] = ACTIONS(789), [anon_sym_while] = ACTIONS(390), [anon_sym_do] = ACTIONS(392), [anon_sym_for] = ACTIONS(394), @@ -21091,73 +21061,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [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_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(789), - [aux_sym_preproc_def_token1] = ACTIONS(789), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(789), - [sym_preproc_directive] = ACTIONS(789), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym_seh_try_statement] = STATE(61), + [sym_seh_leave_statement] = STATE(61), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(931), + [aux_sym_preproc_include_token1] = ACTIONS(793), + [aux_sym_preproc_def_token1] = ACTIONS(793), + [aux_sym_preproc_if_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(793), + [sym_preproc_directive] = ACTIONS(793), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21165,22 +21136,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(789), - [anon_sym___clrcall] = ACTIONS(789), - [anon_sym___stdcall] = ACTIONS(789), - [anon_sym___fastcall] = ACTIONS(789), - [anon_sym___thiscall] = ACTIONS(789), - [anon_sym___vectorcall] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym___cdecl] = ACTIONS(793), + [anon_sym___clrcall] = ACTIONS(793), + [anon_sym___stdcall] = ACTIONS(793), + [anon_sym___fastcall] = ACTIONS(793), + [anon_sym___thiscall] = ACTIONS(793), + [anon_sym___vectorcall] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -21209,20 +21179,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [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___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(793), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -21254,73 +21224,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1140), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(943), + [aux_sym_preproc_include_token1] = ACTIONS(798), + [aux_sym_preproc_def_token1] = ACTIONS(798), + [aux_sym_preproc_if_token1] = ACTIONS(798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(798), + [sym_preproc_directive] = ACTIONS(798), + [anon_sym_LPAREN2] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym___extension__] = ACTIONS(949), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(821), + [anon_sym___attribute__] = ACTIONS(824), + [anon_sym___attribute] = ACTIONS(824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(827), + [anon_sym___declspec] = ACTIONS(830), + [anon_sym___cdecl] = ACTIONS(798), + [anon_sym___clrcall] = ACTIONS(798), + [anon_sym___stdcall] = ACTIONS(798), + [anon_sym___fastcall] = ACTIONS(798), + [anon_sym___thiscall] = ACTIONS(798), + [anon_sym___vectorcall] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_signed] = ACTIONS(836), + [anon_sym_unsigned] = ACTIONS(836), + [anon_sym_long] = ACTIONS(836), + [anon_sym_short] = ACTIONS(836), + [anon_sym_static] = ACTIONS(821), + [anon_sym_auto] = ACTIONS(821), + [anon_sym_register] = ACTIONS(821), + [anon_sym_inline] = ACTIONS(821), + [anon_sym___inline] = ACTIONS(821), + [anon_sym___inline__] = ACTIONS(821), + [anon_sym___forceinline] = ACTIONS(821), + [anon_sym_thread_local] = ACTIONS(821), + [anon_sym___thread] = ACTIONS(821), + [anon_sym_const] = ACTIONS(839), + [anon_sym_constexpr] = ACTIONS(839), + [anon_sym_volatile] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(839), + [anon_sym___restrict__] = ACTIONS(839), + [anon_sym__Atomic] = ACTIONS(839), + [anon_sym__Noreturn] = ACTIONS(839), + [anon_sym_noreturn] = ACTIONS(839), + [anon_sym__Nonnull] = ACTIONS(839), + [anon_sym_alignas] = ACTIONS(842), + [anon_sym__Alignas] = ACTIONS(842), + [sym_primitive_type] = ACTIONS(845), + [anon_sym_enum] = ACTIONS(848), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_union] = ACTIONS(854), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(969), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(975), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_goto] = ACTIONS(984), + [anon_sym___try] = ACTIONS(987), + [anon_sym___leave] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(890), + [anon_sym_sizeof] = ACTIONS(893), + [anon_sym___alignof__] = ACTIONS(896), + [anon_sym___alignof] = ACTIONS(896), + [anon_sym__alignof] = ACTIONS(896), + [anon_sym_alignof] = ACTIONS(896), + [anon_sym__Alignof] = ACTIONS(896), + [anon_sym_offsetof] = ACTIONS(899), + [anon_sym__Generic] = ACTIONS(902), + [anon_sym_asm] = ACTIONS(905), + [anon_sym___asm__] = ACTIONS(905), + [anon_sym___asm] = ACTIONS(905), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(911), + [anon_sym_u_SQUOTE] = ACTIONS(911), + [anon_sym_U_SQUOTE] = ACTIONS(911), + [anon_sym_u8_SQUOTE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(917), + [sym_false] = ACTIONS(917), + [anon_sym_NULL] = ACTIONS(920), + [anon_sym_nullptr] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [56] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(63), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(931), + [aux_sym_preproc_include_token1] = ACTIONS(791), + [aux_sym_preproc_def_token1] = ACTIONS(791), + [aux_sym_preproc_if_token1] = ACTIONS(791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(791), + [sym_preproc_directive] = ACTIONS(791), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21328,22 +21462,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym___cdecl] = ACTIONS(791), + [anon_sym___clrcall] = ACTIONS(791), + [anon_sym___stdcall] = ACTIONS(791), + [anon_sym___fastcall] = ACTIONS(791), + [anon_sym___thiscall] = ACTIONS(791), + [anon_sym___vectorcall] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -21372,20 +21505,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), - [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___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(791), + [anon_sym_default] = ACTIONS(791), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -21416,186 +21549,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(943), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym___extension__] = ACTIONS(949), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(963), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(969), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(975), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_goto] = ACTIONS(984), - [anon_sym___try] = ACTIONS(987), - [anon_sym___leave] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [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(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, [57] = { [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1147), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -21610,44 +21580,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(60), [sym_seh_try_statement] = STATE(60), [sym_seh_leave_statement] = STATE(60), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(60), [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(789), - [aux_sym_preproc_def_token1] = ACTIONS(789), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_if_token2] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(789), - [sym_preproc_directive] = ACTIONS(789), + [aux_sym_preproc_include_token1] = ACTIONS(793), + [aux_sym_preproc_def_token1] = ACTIONS(793), + [aux_sym_preproc_if_token1] = ACTIONS(793), + [aux_sym_preproc_if_token2] = ACTIONS(793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(793), + [sym_preproc_directive] = ACTIONS(793), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21655,21 +21625,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(424), + [anon_sym_typedef] = ACTIONS(426), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(789), - [anon_sym___clrcall] = ACTIONS(789), - [anon_sym___stdcall] = ACTIONS(789), - [anon_sym___fastcall] = ACTIONS(789), - [anon_sym___thiscall] = ACTIONS(789), - [anon_sym___vectorcall] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym___cdecl] = ACTIONS(793), + [anon_sym___clrcall] = ACTIONS(793), + [anon_sym___stdcall] = ACTIONS(793), + [anon_sym___fastcall] = ACTIONS(793), + [anon_sym___thiscall] = ACTIONS(793), + [anon_sym___vectorcall] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(430), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -21698,20 +21668,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_if] = ACTIONS(432), + [anon_sym_else] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(793), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -21745,20 +21715,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [58] = { [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1147), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -21773,44 +21743,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(59), [sym_seh_try_statement] = STATE(59), [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(59), [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(791), - [aux_sym_preproc_def_token1] = ACTIONS(791), - [aux_sym_preproc_if_token1] = ACTIONS(791), - [aux_sym_preproc_if_token2] = ACTIONS(791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(791), - [sym_preproc_directive] = ACTIONS(791), + [aux_sym_preproc_include_token1] = ACTIONS(789), + [aux_sym_preproc_def_token1] = ACTIONS(789), + [aux_sym_preproc_if_token1] = ACTIONS(789), + [aux_sym_preproc_if_token2] = ACTIONS(789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(789), + [sym_preproc_directive] = ACTIONS(789), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21818,21 +21788,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(424), + [anon_sym_typedef] = ACTIONS(426), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(791), - [anon_sym___clrcall] = ACTIONS(791), - [anon_sym___stdcall] = ACTIONS(791), - [anon_sym___fastcall] = ACTIONS(791), - [anon_sym___thiscall] = ACTIONS(791), - [anon_sym___vectorcall] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym___cdecl] = ACTIONS(789), + [anon_sym___clrcall] = ACTIONS(789), + [anon_sym___stdcall] = ACTIONS(789), + [anon_sym___fastcall] = ACTIONS(789), + [anon_sym___thiscall] = ACTIONS(789), + [anon_sym___vectorcall] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(430), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -21861,20 +21831,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(791), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_if] = ACTIONS(432), + [anon_sym_else] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(789), + [anon_sym_default] = ACTIONS(789), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -21906,74 +21876,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(61), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1147), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(62), [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_if_token2] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), + [aux_sym_preproc_include_token1] = ACTIONS(791), + [aux_sym_preproc_def_token1] = ACTIONS(791), + [aux_sym_preproc_if_token1] = ACTIONS(791), + [aux_sym_preproc_if_token2] = ACTIONS(791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(791), + [sym_preproc_directive] = ACTIONS(791), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21981,21 +21951,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(424), + [anon_sym_typedef] = ACTIONS(426), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym___cdecl] = ACTIONS(791), + [anon_sym___clrcall] = ACTIONS(791), + [anon_sym___stdcall] = ACTIONS(791), + [anon_sym___fastcall] = ACTIONS(791), + [anon_sym___thiscall] = ACTIONS(791), + [anon_sym___vectorcall] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(430), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -22024,20 +21994,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_if] = ACTIONS(432), + [anon_sym_else] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(791), + [anon_sym_default] = ACTIONS(791), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -22069,74 +22039,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(61), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1147), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(62), [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_if_token2] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_if_token2] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22144,21 +22114,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(424), + [anon_sym_typedef] = ACTIONS(426), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(430), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -22187,20 +22157,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_if] = ACTIONS(432), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -22232,185 +22202,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [61] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(995), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_if_token2] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym___extension__] = ACTIONS(1001), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_goto] = ACTIONS(1034), - [anon_sym___try] = ACTIONS(1037), - [anon_sym___leave] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [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(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [62] = { [sym_declaration] = STATE(63), [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), [sym_attributed_statement] = STATE(63), [sym_labeled_statement] = STATE(63), [sym_expression_statement] = STATE(63), @@ -22425,44 +22232,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(63), [sym_seh_try_statement] = STATE(63), [sym_seh_leave_statement] = STATE(63), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(927), - [aux_sym_preproc_include_token1] = ACTIONS(789), - [aux_sym_preproc_def_token1] = ACTIONS(789), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(789), - [sym_preproc_directive] = ACTIONS(789), + [ts_builtin_sym_end] = ACTIONS(939), + [sym_identifier] = ACTIONS(931), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22470,7 +22277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(933), [anon_sym___extension__] = ACTIONS(29), [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(47), @@ -22478,12 +22285,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(789), - [anon_sym___clrcall] = ACTIONS(789), - [anon_sym___stdcall] = ACTIONS(789), - [anon_sym___fastcall] = ACTIONS(789), - [anon_sym___thiscall] = ACTIONS(789), - [anon_sym___vectorcall] = ACTIONS(789), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), @@ -22514,10 +22321,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(789), + [anon_sym_else] = ACTIONS(923), [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), [anon_sym_while] = ACTIONS(69), [anon_sym_do] = ACTIONS(71), [anon_sym_for] = ACTIONS(73), @@ -22525,8 +22332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -22557,69 +22364,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, + [62] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1147), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(995), + [aux_sym_preproc_include_token1] = ACTIONS(798), + [aux_sym_preproc_def_token1] = ACTIONS(798), + [aux_sym_preproc_if_token1] = ACTIONS(798), + [aux_sym_preproc_if_token2] = ACTIONS(798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(798), + [sym_preproc_directive] = ACTIONS(798), + [anon_sym_LPAREN2] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym___extension__] = ACTIONS(1001), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(821), + [anon_sym___attribute__] = ACTIONS(824), + [anon_sym___attribute] = ACTIONS(824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(827), + [anon_sym___declspec] = ACTIONS(830), + [anon_sym___cdecl] = ACTIONS(798), + [anon_sym___clrcall] = ACTIONS(798), + [anon_sym___stdcall] = ACTIONS(798), + [anon_sym___fastcall] = ACTIONS(798), + [anon_sym___thiscall] = ACTIONS(798), + [anon_sym___vectorcall] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_signed] = ACTIONS(836), + [anon_sym_unsigned] = ACTIONS(836), + [anon_sym_long] = ACTIONS(836), + [anon_sym_short] = ACTIONS(836), + [anon_sym_static] = ACTIONS(821), + [anon_sym_auto] = ACTIONS(821), + [anon_sym_register] = ACTIONS(821), + [anon_sym_inline] = ACTIONS(821), + [anon_sym___inline] = ACTIONS(821), + [anon_sym___inline__] = ACTIONS(821), + [anon_sym___forceinline] = ACTIONS(821), + [anon_sym_thread_local] = ACTIONS(821), + [anon_sym___thread] = ACTIONS(821), + [anon_sym_const] = ACTIONS(839), + [anon_sym_constexpr] = ACTIONS(839), + [anon_sym_volatile] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(839), + [anon_sym___restrict__] = ACTIONS(839), + [anon_sym__Atomic] = ACTIONS(839), + [anon_sym__Noreturn] = ACTIONS(839), + [anon_sym_noreturn] = ACTIONS(839), + [anon_sym__Nonnull] = ACTIONS(839), + [anon_sym_alignas] = ACTIONS(842), + [anon_sym__Alignas] = ACTIONS(842), + [sym_primitive_type] = ACTIONS(845), + [anon_sym_enum] = ACTIONS(848), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_union] = ACTIONS(854), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_goto] = ACTIONS(1034), + [anon_sym___try] = ACTIONS(1037), + [anon_sym___leave] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(890), + [anon_sym_sizeof] = ACTIONS(893), + [anon_sym___alignof__] = ACTIONS(896), + [anon_sym___alignof] = ACTIONS(896), + [anon_sym__alignof] = ACTIONS(896), + [anon_sym_alignof] = ACTIONS(896), + [anon_sym__Alignof] = ACTIONS(896), + [anon_sym_offsetof] = ACTIONS(899), + [anon_sym__Generic] = ACTIONS(902), + [anon_sym_asm] = ACTIONS(905), + [anon_sym___asm__] = ACTIONS(905), + [anon_sym___asm] = ACTIONS(905), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(911), + [anon_sym_u_SQUOTE] = ACTIONS(911), + [anon_sym_U_SQUOTE] = ACTIONS(911), + [anon_sym_u8_SQUOTE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(917), + [sym_false] = ACTIONS(917), + [anon_sym_NULL] = ACTIONS(920), + [anon_sym_nullptr] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, [63] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(939), - [sym_identifier] = ACTIONS(927), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(63), + [ts_builtin_sym_end] = ACTIONS(958), + [sym_identifier] = ACTIONS(1043), + [aux_sym_preproc_include_token1] = ACTIONS(798), + [aux_sym_preproc_def_token1] = ACTIONS(798), + [aux_sym_preproc_if_token1] = ACTIONS(798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(798), + [sym_preproc_directive] = ACTIONS(798), + [anon_sym_LPAREN2] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym___extension__] = ACTIONS(1049), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(821), + [anon_sym___attribute__] = ACTIONS(824), + [anon_sym___attribute] = ACTIONS(824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(827), + [anon_sym___declspec] = ACTIONS(830), + [anon_sym___cdecl] = ACTIONS(798), + [anon_sym___clrcall] = ACTIONS(798), + [anon_sym___stdcall] = ACTIONS(798), + [anon_sym___fastcall] = ACTIONS(798), + [anon_sym___thiscall] = ACTIONS(798), + [anon_sym___vectorcall] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_signed] = ACTIONS(836), + [anon_sym_unsigned] = ACTIONS(836), + [anon_sym_long] = ACTIONS(836), + [anon_sym_short] = ACTIONS(836), + [anon_sym_static] = ACTIONS(821), + [anon_sym_auto] = ACTIONS(821), + [anon_sym_register] = ACTIONS(821), + [anon_sym_inline] = ACTIONS(821), + [anon_sym___inline] = ACTIONS(821), + [anon_sym___inline__] = ACTIONS(821), + [anon_sym___forceinline] = ACTIONS(821), + [anon_sym_thread_local] = ACTIONS(821), + [anon_sym___thread] = ACTIONS(821), + [anon_sym_const] = ACTIONS(839), + [anon_sym_constexpr] = ACTIONS(839), + [anon_sym_volatile] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(839), + [anon_sym___restrict__] = ACTIONS(839), + [anon_sym__Atomic] = ACTIONS(839), + [anon_sym__Noreturn] = ACTIONS(839), + [anon_sym_noreturn] = ACTIONS(839), + [anon_sym__Nonnull] = ACTIONS(839), + [anon_sym_alignas] = ACTIONS(842), + [anon_sym__Alignas] = ACTIONS(842), + [sym_primitive_type] = ACTIONS(845), + [anon_sym_enum] = ACTIONS(848), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_union] = ACTIONS(854), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(1061), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym___try] = ACTIONS(1085), + [anon_sym___leave] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(890), + [anon_sym_sizeof] = ACTIONS(893), + [anon_sym___alignof__] = ACTIONS(896), + [anon_sym___alignof] = ACTIONS(896), + [anon_sym__alignof] = ACTIONS(896), + [anon_sym_alignof] = ACTIONS(896), + [anon_sym__Alignof] = ACTIONS(896), + [anon_sym_offsetof] = ACTIONS(899), + [anon_sym__Generic] = ACTIONS(902), + [anon_sym_asm] = ACTIONS(905), + [anon_sym___asm__] = ACTIONS(905), + [anon_sym___asm] = ACTIONS(905), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(911), + [anon_sym_u_SQUOTE] = ACTIONS(911), + [anon_sym_U_SQUOTE] = ACTIONS(911), + [anon_sym_u8_SQUOTE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(917), + [sym_false] = ACTIONS(917), + [anon_sym_NULL] = ACTIONS(920), + [anon_sym_nullptr] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [64] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1140), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(925), [aux_sym_preproc_include_token1] = ACTIONS(793), [aux_sym_preproc_def_token1] = ACTIONS(793), [aux_sym_preproc_if_token1] = ACTIONS(793), @@ -22633,9 +22765,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(929), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym___extension__] = ACTIONS(372), + [anon_sym_typedef] = ACTIONS(374), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), @@ -22647,7 +22779,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(793), [anon_sym___thiscall] = ACTIONS(793), [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(941), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -22676,20 +22809,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), + [anon_sym_if] = ACTIONS(382), [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(384), [anon_sym_case] = ACTIONS(793), [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [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___try] = ACTIONS(404), + [anon_sym___leave] = ACTIONS(406), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -22720,231 +22853,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(1043), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_goto] = ACTIONS(1082), - [anon_sym___try] = ACTIONS(1085), - [anon_sym___leave] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [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(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, [65] = { - [sym_declaration] = STATE(192), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(192), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(937), + [sym_declaration] = STATE(190), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(154), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(154), + [sym_statement] = STATE(190), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(931), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22952,14 +22922,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(933), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -22988,19 +22958,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [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___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -23032,67 +23002,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(85), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(85), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(787), + [sym_declaration] = STATE(219), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1140), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(219), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(925), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23100,14 +23070,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(370), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(378), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -23136,19 +23106,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), + [anon_sym_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___try] = ACTIONS(404), + [anon_sym___leave] = ACTIONS(406), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -23180,66 +23150,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(70), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(74), [sym_identifier] = ACTIONS(1093), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23328,67 +23298,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [68] = { - [sym_declaration] = STATE(227), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(227), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1093), + [sym_declaration] = STATE(99), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1142), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(81), + [sym_statement] = STATE(99), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(787), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23396,14 +23366,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(125), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(133), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -23432,19 +23402,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -23476,66 +23446,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [69] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(71), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(67), [sym_identifier] = ACTIONS(1093), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23624,66 +23594,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [70] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(72), + [sym_declaration] = STATE(190), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(244), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(190), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(1093), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23693,8 +23663,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(370), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(1091), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), @@ -23730,8 +23699,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(795), [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1103), + [anon_sym_default] = ACTIONS(1105), [anon_sym_while] = ACTIONS(1097), [anon_sym_do] = ACTIONS(71), [anon_sym_for] = ACTIONS(1099), @@ -23772,66 +23742,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(72), + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym_seh_try_statement] = STATE(73), + [sym_seh_leave_statement] = STATE(73), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(73), [sym_identifier] = ACTIONS(1093), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23920,215 +23890,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [72] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym___extension__] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_goto] = ACTIONS(1082), - [anon_sym___try] = ACTIONS(1119), - [anon_sym___leave] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [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(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [73] = { - [sym_declaration] = STATE(227), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(159), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(227), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(927), + [sym_declaration] = STATE(194), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1147), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(178), + [sym_statement] = STATE(194), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(993), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24136,14 +23958,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(422), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(430), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -24172,19 +23994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -24215,68 +24037,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_declaration] = STATE(196), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(196), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(993), + [73] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1093), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24284,14 +24106,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1091), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -24320,19 +24143,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(406), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -24363,50 +24185,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, + [74] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1155), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(399), + [sym_ms_declspec_modifier] = STATE(695), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym___extension__] = ACTIONS(1049), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(821), + [anon_sym___attribute__] = ACTIONS(824), + [anon_sym___attribute] = ACTIONS(824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(827), + [anon_sym___declspec] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_signed] = ACTIONS(836), + [anon_sym_unsigned] = ACTIONS(836), + [anon_sym_long] = ACTIONS(836), + [anon_sym_short] = ACTIONS(836), + [anon_sym_static] = ACTIONS(821), + [anon_sym_auto] = ACTIONS(821), + [anon_sym_register] = ACTIONS(821), + [anon_sym_inline] = ACTIONS(821), + [anon_sym___inline] = ACTIONS(821), + [anon_sym___inline__] = ACTIONS(821), + [anon_sym___forceinline] = ACTIONS(821), + [anon_sym_thread_local] = ACTIONS(821), + [anon_sym___thread] = ACTIONS(821), + [anon_sym_const] = ACTIONS(839), + [anon_sym_constexpr] = ACTIONS(839), + [anon_sym_volatile] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(839), + [anon_sym___restrict__] = ACTIONS(839), + [anon_sym__Atomic] = ACTIONS(839), + [anon_sym__Noreturn] = ACTIONS(839), + [anon_sym_noreturn] = ACTIONS(839), + [anon_sym__Nonnull] = ACTIONS(839), + [anon_sym_alignas] = ACTIONS(842), + [anon_sym__Alignas] = ACTIONS(842), + [sym_primitive_type] = ACTIONS(845), + [anon_sym_enum] = ACTIONS(848), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_union] = ACTIONS(854), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym___try] = ACTIONS(1119), + [anon_sym___leave] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(890), + [anon_sym_sizeof] = ACTIONS(893), + [anon_sym___alignof__] = ACTIONS(896), + [anon_sym___alignof] = ACTIONS(896), + [anon_sym__alignof] = ACTIONS(896), + [anon_sym_alignof] = ACTIONS(896), + [anon_sym__Alignof] = ACTIONS(896), + [anon_sym_offsetof] = ACTIONS(899), + [anon_sym__Generic] = ACTIONS(902), + [anon_sym_asm] = ACTIONS(905), + [anon_sym___asm__] = ACTIONS(905), + [anon_sym___asm] = ACTIONS(905), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(911), + [anon_sym_u_SQUOTE] = ACTIONS(911), + [anon_sym_U_SQUOTE] = ACTIONS(911), + [anon_sym_u8_SQUOTE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(917), + [sym_false] = ACTIONS(917), + [anon_sym_NULL] = ACTIONS(920), + [anon_sym_nullptr] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, [75] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1874), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_declaration] = STATE(455), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1151), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__for_statement_body] = STATE(1934), + [sym_expression] = STATE(1042), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1800), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(1122), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -24481,49 +24451,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [76] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1995), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_declaration] = STATE(455), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1151), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__for_statement_body] = STATE(1861), + [sym_expression] = STATE(1042), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1800), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(1122), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -24598,49 +24568,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [77] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1815), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_declaration] = STATE(455), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1151), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__for_statement_body] = STATE(1926), + [sym_expression] = STATE(1042), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1800), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(1122), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -24715,49 +24685,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [78] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1937), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_declaration] = STATE(455), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1151), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__for_statement_body] = STATE(1922), + [sym_expression] = STATE(1042), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1800), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(1122), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -24832,49 +24802,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [79] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1838), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_declaration] = STATE(455), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1151), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__for_statement_body] = STATE(1998), + [sym_expression] = STATE(1042), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1800), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(1122), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -24949,7 +24919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [80] = { - [sym_else_clause] = STATE(90), + [sym_else_clause] = STATE(107), [sym_identifier] = ACTIONS(1128), [aux_sym_preproc_include_token1] = ACTIONS(1128), [aux_sym_preproc_def_token1] = ACTIONS(1128), @@ -25699,110 +25669,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [aux_sym_preproc_elif_token1] = ACTIONS(1154), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [anon_sym_COMMA] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym___attribute] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [anon_sym__Nonnull] = ACTIONS(1138), + [anon_sym_alignas] = ACTIONS(1138), + [anon_sym__Alignas] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___except] = ACTIONS(1138), + [anon_sym___finally] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [anon_sym___asm] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), [sym_comment] = ACTIONS(3), }, [88] = { @@ -25913,6 +25883,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym___extension__] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym___attribute] = ACTIONS(1158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(1158), + [anon_sym___cdecl] = ACTIONS(1158), + [anon_sym___clrcall] = ACTIONS(1158), + [anon_sym___stdcall] = ACTIONS(1158), + [anon_sym___fastcall] = ACTIONS(1158), + [anon_sym___thiscall] = ACTIONS(1158), + [anon_sym___vectorcall] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___inline] = ACTIONS(1158), + [anon_sym___inline__] = ACTIONS(1158), + [anon_sym___forceinline] = ACTIONS(1158), + [anon_sym_thread_local] = ACTIONS(1158), + [anon_sym___thread] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_constexpr] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym___restrict__] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym__Noreturn] = ACTIONS(1158), + [anon_sym_noreturn] = ACTIONS(1158), + [anon_sym__Nonnull] = ACTIONS(1158), + [anon_sym_alignas] = ACTIONS(1158), + [anon_sym__Alignas] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1158), + [anon_sym___except] = ACTIONS(1158), + [anon_sym___finally] = ACTIONS(1158), + [anon_sym___leave] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym___alignof__] = ACTIONS(1158), + [anon_sym___alignof] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1158), + [anon_sym_alignof] = ACTIONS(1158), + [anon_sym__Alignof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = ACTIONS(1158), + [anon_sym_asm] = ACTIONS(1158), + [anon_sym___asm__] = ACTIONS(1158), + [anon_sym___asm] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_NULL] = ACTIONS(1158), + [anon_sym_nullptr] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + }, + [90] = { [sym_identifier] = ACTIONS(1162), [aux_sym_preproc_include_token1] = ACTIONS(1162), [aux_sym_preproc_def_token1] = ACTIONS(1162), @@ -26019,7 +26096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1162), [sym_comment] = ACTIONS(3), }, - [90] = { + [91] = { [sym_identifier] = ACTIONS(1166), [aux_sym_preproc_include_token1] = ACTIONS(1166), [aux_sym_preproc_def_token1] = ACTIONS(1166), @@ -26126,113 +26203,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1166), [sym_comment] = ACTIONS(3), }, - [91] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [aux_sym_preproc_else_token1] = ACTIONS(1170), - [aux_sym_preproc_elif_token1] = ACTIONS(1170), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, [92] = { [sym_identifier] = ACTIONS(1170), [aux_sym_preproc_include_token1] = ACTIONS(1170), @@ -26448,110 +26418,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [94] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [aux_sym_preproc_else_token1] = ACTIONS(1174), - [aux_sym_preproc_elif_token1] = ACTIONS(1174), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [aux_sym_preproc_else_token1] = ACTIONS(1178), + [aux_sym_preproc_elif_token1] = ACTIONS(1178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym___attribute] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [anon_sym__Nonnull] = ACTIONS(1178), + [anon_sym_alignas] = ACTIONS(1178), + [anon_sym__Alignas] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [anon_sym___asm] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), [sym_comment] = ACTIONS(3), }, [95] = { @@ -27304,113 +27274,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [102] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token2] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [aux_sym_preproc_else_token1] = ACTIONS(1202), - [aux_sym_preproc_elif_token1] = ACTIONS(1202), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [103] = { [sym_identifier] = ACTIONS(1206), [aux_sym_preproc_include_token1] = ACTIONS(1206), [aux_sym_preproc_def_token1] = ACTIONS(1206), @@ -27517,6 +27380,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1206), [sym_comment] = ACTIONS(3), }, + [103] = { + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token2] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [aux_sym_preproc_else_token1] = ACTIONS(1202), + [aux_sym_preproc_elif_token1] = ACTIONS(1202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym___attribute] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [anon_sym__Nonnull] = ACTIONS(1202), + [anon_sym_alignas] = ACTIONS(1202), + [anon_sym__Alignas] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [anon_sym___asm] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + }, [104] = { [sym_identifier] = ACTIONS(1210), [aux_sym_preproc_include_token1] = ACTIONS(1210), @@ -28267,6 +28237,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [111] = { + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [aux_sym_preproc_else_token1] = ACTIONS(1234), + [aux_sym_preproc_elif_token1] = ACTIONS(1234), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym___attribute] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [anon_sym__Nonnull] = ACTIONS(1234), + [anon_sym_alignas] = ACTIONS(1234), + [anon_sym__Alignas] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [anon_sym___asm] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + }, + [112] = { [sym_identifier] = ACTIONS(1238), [aux_sym_preproc_include_token1] = ACTIONS(1238), [aux_sym_preproc_def_token1] = ACTIONS(1238), @@ -28373,7 +28450,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [112] = { + [113] = { + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token2] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [aux_sym_preproc_else_token1] = ACTIONS(1238), + [aux_sym_preproc_elif_token1] = ACTIONS(1238), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym___attribute] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [anon_sym__Nonnull] = ACTIONS(1238), + [anon_sym_alignas] = ACTIONS(1238), + [anon_sym__Alignas] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [anon_sym___asm] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + }, + [114] = { [sym_identifier] = ACTIONS(1242), [aux_sym_preproc_include_token1] = ACTIONS(1242), [aux_sym_preproc_def_token1] = ACTIONS(1242), @@ -28480,7 +28664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, - [113] = { + [115] = { [sym_identifier] = ACTIONS(1246), [aux_sym_preproc_include_token1] = ACTIONS(1246), [aux_sym_preproc_def_token1] = ACTIONS(1246), @@ -28587,7 +28771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(3), }, - [114] = { + [116] = { [sym_identifier] = ACTIONS(1250), [aux_sym_preproc_include_token1] = ACTIONS(1250), [aux_sym_preproc_def_token1] = ACTIONS(1250), @@ -28694,114 +28878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(3), }, - [115] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1230), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___attribute] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym__Nonnull] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___except] = ACTIONS(1230), - [anon_sym___finally] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [anon_sym___asm] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - }, - [116] = { + [117] = { [sym_identifier] = ACTIONS(1254), [aux_sym_preproc_include_token1] = ACTIONS(1254), [aux_sym_preproc_def_token1] = ACTIONS(1254), @@ -28908,113 +28985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(3), }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [anon_sym_COMMA] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [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___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = 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_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1218), - [anon_sym__Nonnull] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(1218), - [anon_sym___except] = ACTIONS(1218), - [anon_sym___finally] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = 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), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - }, [118] = { [sym_identifier] = ACTIONS(1258), [aux_sym_preproc_include_token1] = ACTIONS(1258), @@ -29135,20 +29105,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1262), [aux_sym_preproc_elifdef_token2] = ACTIONS(1262), [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), [anon_sym_DASH] = ACTIONS(1262), [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), [anon_sym___extension__] = ACTIONS(1262), [anon_sym_typedef] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(1262), [anon_sym___attribute__] = ACTIONS(1262), [anon_sym___attribute] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(1262), [anon_sym___cdecl] = ACTIONS(1262), [anon_sym___clrcall] = ACTIONS(1262), @@ -29156,7 +29126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1262), [anon_sym___thiscall] = ACTIONS(1262), [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_signed] = ACTIONS(1262), [anon_sym_unsigned] = ACTIONS(1262), [anon_sym_long] = ACTIONS(1262), @@ -29198,8 +29168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1262), [anon_sym___try] = ACTIONS(1262), [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), [anon_sym_sizeof] = ACTIONS(1262), [anon_sym___alignof__] = ACTIONS(1262), [anon_sym___alignof] = ACTIONS(1262), @@ -29211,17 +29181,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1262), [anon_sym___asm__] = ACTIONS(1262), [anon_sym___asm] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), [sym_true] = ACTIONS(1262), [sym_false] = ACTIONS(1262), [anon_sym_NULL] = ACTIONS(1262), @@ -29229,1911 +29199,1911 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [120] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [aux_sym_preproc_else_token1] = ACTIONS(1268), - [aux_sym_preproc_elif_token1] = ACTIONS(1268), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [sym_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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1266), + [anon_sym__Nonnull] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = 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___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, [121] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [aux_sym_preproc_else_token1] = ACTIONS(1272), - [aux_sym_preproc_elif_token1] = ACTIONS(1272), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [sym_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), + [aux_sym_preproc_else_token1] = ACTIONS(1270), + [aux_sym_preproc_elif_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym___attribute] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [anon_sym__Nonnull] = ACTIONS(1270), + [anon_sym_alignas] = ACTIONS(1270), + [anon_sym__Alignas] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [anon_sym___asm] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, [122] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [aux_sym_preproc_else_token1] = ACTIONS(1276), - [aux_sym_preproc_elif_token1] = ACTIONS(1276), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [sym_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), + [aux_sym_preproc_else_token1] = ACTIONS(1274), + [aux_sym_preproc_elif_token1] = ACTIONS(1274), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1274), + [anon_sym__Nonnull] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = 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___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, [123] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [aux_sym_preproc_else_token1] = ACTIONS(1280), - [aux_sym_preproc_elif_token1] = ACTIONS(1280), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [sym_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), + [aux_sym_preproc_else_token1] = ACTIONS(1278), + [aux_sym_preproc_elif_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1278), + [anon_sym__Nonnull] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = 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___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, [124] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [aux_sym_preproc_else_token1] = ACTIONS(1284), - [aux_sym_preproc_elif_token1] = ACTIONS(1284), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [sym_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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1282), + [anon_sym__Nonnull] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = 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___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(3), }, [125] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [aux_sym_preproc_else_token1] = ACTIONS(1288), - [aux_sym_preproc_elif_token1] = ACTIONS(1288), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [sym_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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1286), + [anon_sym__Nonnull] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = 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___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1290), + [anon_sym__Nonnull] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = 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___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [aux_sym_preproc_else_token1] = ACTIONS(1296), - [aux_sym_preproc_elif_token1] = ACTIONS(1296), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [sym_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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1294), + [anon_sym__Nonnull] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = 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___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [aux_sym_preproc_else_token1] = ACTIONS(1300), - [aux_sym_preproc_elif_token1] = ACTIONS(1300), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___attribute] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym__Nonnull] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = 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___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [anon_sym___asm] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [129] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [aux_sym_preproc_else_token1] = ACTIONS(1304), - [aux_sym_preproc_elif_token1] = ACTIONS(1304), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym___attribute] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym__Nonnull] = ACTIONS(1304), - [anon_sym_alignas] = ACTIONS(1304), - [anon_sym__Alignas] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [anon_sym___asm] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [sym_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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___attribute] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym__Nonnull] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = 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___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [anon_sym___asm] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [130] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___attribute] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym__Nonnull] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = 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___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [anon_sym___asm] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [131] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym__Nonnull] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = 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___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [anon_sym___asm] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, [132] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___attribute] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym__Nonnull] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = 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___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [anon_sym___asm] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [aux_sym_preproc_else_token1] = ACTIONS(1320), - [aux_sym_preproc_elif_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, [134] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [aux_sym_preproc_else_token1] = ACTIONS(1324), - [aux_sym_preproc_elif_token1] = ACTIONS(1324), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = 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___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___attribute] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym__Nonnull] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [anon_sym___asm] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, [135] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [aux_sym_preproc_else_token1] = ACTIONS(1328), - [aux_sym_preproc_elif_token1] = ACTIONS(1328), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = 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___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___attribute] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym__Nonnull] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [anon_sym___asm] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, [136] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [aux_sym_preproc_else_token1] = ACTIONS(1332), - [aux_sym_preproc_elif_token1] = ACTIONS(1332), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___attribute] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym__Nonnull] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [anon_sym___asm] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, [137] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___attribute] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym__Nonnull] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [anon_sym___asm] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [138] = { @@ -31985,224 +31955,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [146] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [aux_sym_preproc_else_token1] = ACTIONS(1372), - [aux_sym_preproc_elif_token1] = ACTIONS(1372), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym___extension__] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym___attribute] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym___inline] = ACTIONS(1372), - [anon_sym___inline__] = ACTIONS(1372), - [anon_sym___forceinline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym__Nonnull] = ACTIONS(1372), - [anon_sym_alignas] = ACTIONS(1372), - [anon_sym__Alignas] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym___try] = ACTIONS(1372), - [anon_sym___leave] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym___alignof__] = ACTIONS(1372), - [anon_sym___alignof] = ACTIONS(1372), - [anon_sym__alignof] = ACTIONS(1372), - [anon_sym_alignof] = ACTIONS(1372), - [anon_sym__Alignof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [anon_sym___asm] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [aux_sym_preproc_else_token1] = ACTIONS(1376), - [aux_sym_preproc_elif_token1] = ACTIONS(1376), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym___extension__] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym___attribute] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym___inline] = ACTIONS(1376), - [anon_sym___inline__] = ACTIONS(1376), - [anon_sym___forceinline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym__Nonnull] = ACTIONS(1376), - [anon_sym_alignas] = ACTIONS(1376), - [anon_sym__Alignas] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym___try] = ACTIONS(1376), - [anon_sym___leave] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym___alignof__] = ACTIONS(1376), - [anon_sym___alignof] = ACTIONS(1376), - [anon_sym__alignof] = ACTIONS(1376), - [anon_sym_alignof] = ACTIONS(1376), - [anon_sym__Alignof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [anon_sym___asm] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_else_clause] = STATE(199), + [sym_else_clause] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(1130), [sym_identifier] = ACTIONS(1128), [aux_sym_preproc_include_token1] = ACTIONS(1128), [aux_sym_preproc_def_token1] = ACTIONS(1128), [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token2] = ACTIONS(1128), [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), [sym_preproc_directive] = ACTIONS(1128), @@ -32257,7 +32015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1128), [anon_sym_union] = ACTIONS(1128), [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1372), [anon_sym_switch] = ACTIONS(1128), [anon_sym_case] = ACTIONS(1128), [anon_sym_default] = ACTIONS(1128), @@ -32300,9 +32058,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1128), [sym_comment] = ACTIONS(3), }, - [149] = { - [sym_else_clause] = STATE(243), - [ts_builtin_sym_end] = ACTIONS(1130), + [147] = { + [sym_else_clause] = STATE(224), [sym_identifier] = ACTIONS(1128), [aux_sym_preproc_include_token1] = ACTIONS(1128), [aux_sym_preproc_def_token1] = ACTIONS(1128), @@ -32332,6 +32089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1128), [anon_sym___vectorcall] = ACTIONS(1128), [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), [anon_sym_signed] = ACTIONS(1128), [anon_sym_unsigned] = ACTIONS(1128), [anon_sym_long] = ACTIONS(1128), @@ -32361,7 +32119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1128), [anon_sym_union] = ACTIONS(1128), [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1374), [anon_sym_switch] = ACTIONS(1128), [anon_sym_case] = ACTIONS(1128), [anon_sym_default] = ACTIONS(1128), @@ -32404,12 +32162,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1128), [sym_comment] = ACTIONS(3), }, - [150] = { - [sym_else_clause] = STATE(223), + [148] = { + [sym_else_clause] = STATE(197), [sym_identifier] = ACTIONS(1128), [aux_sym_preproc_include_token1] = ACTIONS(1128), [aux_sym_preproc_def_token1] = ACTIONS(1128), [aux_sym_preproc_if_token1] = ACTIONS(1128), + [aux_sym_preproc_if_token2] = ACTIONS(1128), [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), [sym_preproc_directive] = ACTIONS(1128), @@ -32435,7 +32194,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1128), [anon_sym___vectorcall] = ACTIONS(1128), [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), [anon_sym_signed] = ACTIONS(1128), [anon_sym_unsigned] = ACTIONS(1128), [anon_sym_long] = ACTIONS(1128), @@ -32465,7 +32223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1128), [anon_sym_union] = ACTIONS(1128), [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1376), [anon_sym_switch] = ACTIONS(1128), [anon_sym_case] = ACTIONS(1128), [anon_sym_default] = ACTIONS(1128), @@ -32508,1861 +32266,1243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1128), [sym_comment] = ACTIONS(3), }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), + [149] = { + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token2] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym___attribute] = ACTIONS(1162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), + [anon_sym___declspec] = ACTIONS(1162), + [anon_sym___cdecl] = ACTIONS(1162), + [anon_sym___clrcall] = ACTIONS(1162), + [anon_sym___stdcall] = ACTIONS(1162), + [anon_sym___fastcall] = ACTIONS(1162), + [anon_sym___thiscall] = ACTIONS(1162), + [anon_sym___vectorcall] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym___inline] = ACTIONS(1162), + [anon_sym___inline__] = ACTIONS(1162), + [anon_sym___forceinline] = ACTIONS(1162), + [anon_sym_thread_local] = ACTIONS(1162), + [anon_sym___thread] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_constexpr] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym___restrict__] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym__Noreturn] = ACTIONS(1162), + [anon_sym_noreturn] = ACTIONS(1162), + [anon_sym__Nonnull] = ACTIONS(1162), + [anon_sym_alignas] = ACTIONS(1162), + [anon_sym__Alignas] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1162), + [anon_sym___leave] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym___alignof__] = ACTIONS(1162), + [anon_sym___alignof] = ACTIONS(1162), + [anon_sym__alignof] = ACTIONS(1162), + [anon_sym_alignof] = ACTIONS(1162), + [anon_sym__Alignof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = ACTIONS(1162), + [anon_sym_asm] = ACTIONS(1162), + [anon_sym___asm__] = ACTIONS(1162), + [anon_sym___asm] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [anon_sym_NULL] = ACTIONS(1162), + [anon_sym_nullptr] = ACTIONS(1162), [sym_comment] = ACTIONS(3), }, - [152] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), + [150] = { + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym___extension__] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym___attribute] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym___declspec] = ACTIONS(1142), + [anon_sym___cdecl] = ACTIONS(1142), + [anon_sym___clrcall] = ACTIONS(1142), + [anon_sym___stdcall] = ACTIONS(1142), + [anon_sym___fastcall] = ACTIONS(1142), + [anon_sym___thiscall] = ACTIONS(1142), + [anon_sym___vectorcall] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym___inline] = ACTIONS(1142), + [anon_sym___inline__] = ACTIONS(1142), + [anon_sym___forceinline] = ACTIONS(1142), + [anon_sym_thread_local] = ACTIONS(1142), + [anon_sym___thread] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_constexpr] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym___restrict__] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym__Noreturn] = ACTIONS(1142), + [anon_sym_noreturn] = ACTIONS(1142), + [anon_sym__Nonnull] = ACTIONS(1142), + [anon_sym_alignas] = ACTIONS(1142), + [anon_sym__Alignas] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym___try] = ACTIONS(1142), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym___alignof__] = ACTIONS(1142), + [anon_sym___alignof] = ACTIONS(1142), + [anon_sym__alignof] = ACTIONS(1142), + [anon_sym_alignof] = ACTIONS(1142), + [anon_sym__Alignof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = ACTIONS(1142), + [anon_sym_asm] = ACTIONS(1142), + [anon_sym___asm__] = ACTIONS(1142), + [anon_sym___asm] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [anon_sym_NULL] = ACTIONS(1142), + [anon_sym_nullptr] = ACTIONS(1142), [sym_comment] = ACTIONS(3), }, - [153] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [sym_identifier] = ACTIONS(1206), - [aux_sym_preproc_include_token1] = ACTIONS(1206), - [aux_sym_preproc_def_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym___attribute__] = ACTIONS(1206), - [anon_sym___attribute] = ACTIONS(1206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), - [anon_sym___declspec] = ACTIONS(1206), - [anon_sym___cdecl] = ACTIONS(1206), - [anon_sym___clrcall] = ACTIONS(1206), - [anon_sym___stdcall] = ACTIONS(1206), - [anon_sym___fastcall] = ACTIONS(1206), - [anon_sym___thiscall] = ACTIONS(1206), - [anon_sym___vectorcall] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1206), - [anon_sym_unsigned] = ACTIONS(1206), - [anon_sym_long] = ACTIONS(1206), - [anon_sym_short] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym___inline] = ACTIONS(1206), - [anon_sym___inline__] = ACTIONS(1206), - [anon_sym___forceinline] = ACTIONS(1206), - [anon_sym_thread_local] = ACTIONS(1206), - [anon_sym___thread] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_constexpr] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym___restrict__] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym__Noreturn] = ACTIONS(1206), - [anon_sym_noreturn] = ACTIONS(1206), - [anon_sym__Nonnull] = ACTIONS(1206), - [anon_sym_alignas] = ACTIONS(1206), - [anon_sym__Alignas] = ACTIONS(1206), - [sym_primitive_type] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_goto] = ACTIONS(1206), - [anon_sym___try] = ACTIONS(1206), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1206), - [anon_sym___alignof__] = ACTIONS(1206), - [anon_sym___alignof] = ACTIONS(1206), - [anon_sym__alignof] = ACTIONS(1206), - [anon_sym_alignof] = ACTIONS(1206), - [anon_sym__Alignof] = ACTIONS(1206), - [anon_sym_offsetof] = ACTIONS(1206), - [anon_sym__Generic] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1206), - [anon_sym___asm__] = ACTIONS(1206), - [anon_sym___asm] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_L_SQUOTE] = ACTIONS(1208), - [anon_sym_u_SQUOTE] = ACTIONS(1208), - [anon_sym_U_SQUOTE] = ACTIONS(1208), - [anon_sym_u8_SQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_L_DQUOTE] = ACTIONS(1208), - [anon_sym_u_DQUOTE] = ACTIONS(1208), - [anon_sym_U_DQUOTE] = ACTIONS(1208), - [anon_sym_u8_DQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [anon_sym_NULL] = ACTIONS(1206), - [anon_sym_nullptr] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_include_token1] = ACTIONS(1210), - [aux_sym_preproc_def_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym___extension__] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym___attribute__] = ACTIONS(1210), - [anon_sym___attribute] = ACTIONS(1210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), - [anon_sym___declspec] = ACTIONS(1210), - [anon_sym___cdecl] = ACTIONS(1210), - [anon_sym___clrcall] = ACTIONS(1210), - [anon_sym___stdcall] = ACTIONS(1210), - [anon_sym___fastcall] = ACTIONS(1210), - [anon_sym___thiscall] = ACTIONS(1210), - [anon_sym___vectorcall] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_inline] = ACTIONS(1210), - [anon_sym___inline] = ACTIONS(1210), - [anon_sym___inline__] = ACTIONS(1210), - [anon_sym___forceinline] = ACTIONS(1210), - [anon_sym_thread_local] = ACTIONS(1210), - [anon_sym___thread] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_constexpr] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym___restrict__] = ACTIONS(1210), - [anon_sym__Atomic] = ACTIONS(1210), - [anon_sym__Noreturn] = ACTIONS(1210), - [anon_sym_noreturn] = ACTIONS(1210), - [anon_sym__Nonnull] = ACTIONS(1210), - [anon_sym_alignas] = ACTIONS(1210), - [anon_sym__Alignas] = ACTIONS(1210), - [sym_primitive_type] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym___try] = ACTIONS(1210), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym___alignof__] = ACTIONS(1210), - [anon_sym___alignof] = ACTIONS(1210), - [anon_sym__alignof] = ACTIONS(1210), - [anon_sym_alignof] = ACTIONS(1210), - [anon_sym__Alignof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1210), - [anon_sym__Generic] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1210), - [anon_sym___asm__] = ACTIONS(1210), - [anon_sym___asm] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_L_SQUOTE] = ACTIONS(1212), - [anon_sym_u_SQUOTE] = ACTIONS(1212), - [anon_sym_U_SQUOTE] = ACTIONS(1212), - [anon_sym_u8_SQUOTE] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [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(1210), - [sym_false] = ACTIONS(1210), - [anon_sym_NULL] = ACTIONS(1210), - [anon_sym_nullptr] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - }, - [156] = { - [sym_identifier] = ACTIONS(1214), - [aux_sym_preproc_include_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [anon_sym___attribute] = ACTIONS(1214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), - [anon_sym___declspec] = ACTIONS(1214), - [anon_sym___cdecl] = ACTIONS(1214), - [anon_sym___clrcall] = ACTIONS(1214), - [anon_sym___stdcall] = ACTIONS(1214), - [anon_sym___fastcall] = ACTIONS(1214), - [anon_sym___thiscall] = ACTIONS(1214), - [anon_sym___vectorcall] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___inline] = ACTIONS(1214), - [anon_sym___inline__] = ACTIONS(1214), - [anon_sym___forceinline] = ACTIONS(1214), - [anon_sym_thread_local] = ACTIONS(1214), - [anon_sym___thread] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_constexpr] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym___restrict__] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym__Noreturn] = ACTIONS(1214), - [anon_sym_noreturn] = ACTIONS(1214), - [anon_sym__Nonnull] = ACTIONS(1214), - [anon_sym_alignas] = ACTIONS(1214), - [anon_sym__Alignas] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym___try] = ACTIONS(1214), - [anon_sym___leave] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_sizeof] = ACTIONS(1214), - [anon_sym___alignof__] = ACTIONS(1214), - [anon_sym___alignof] = ACTIONS(1214), - [anon_sym__alignof] = ACTIONS(1214), - [anon_sym_alignof] = ACTIONS(1214), - [anon_sym__Alignof] = ACTIONS(1214), - [anon_sym_offsetof] = ACTIONS(1214), - [anon_sym__Generic] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1214), - [anon_sym___asm__] = ACTIONS(1214), - [anon_sym___asm] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1216), - [anon_sym_L_SQUOTE] = ACTIONS(1216), - [anon_sym_u_SQUOTE] = ACTIONS(1216), - [anon_sym_U_SQUOTE] = ACTIONS(1216), - [anon_sym_u8_SQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_L_DQUOTE] = ACTIONS(1216), - [anon_sym_u_DQUOTE] = ACTIONS(1216), - [anon_sym_U_DQUOTE] = ACTIONS(1216), - [anon_sym_u8_DQUOTE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [anon_sym_NULL] = ACTIONS(1214), - [anon_sym_nullptr] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [sym_identifier] = ACTIONS(1230), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___attribute] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym__Nonnull] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [anon_sym___asm] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym___extension__] = ACTIONS(1190), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym___attribute] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym___inline] = ACTIONS(1190), - [anon_sym___inline__] = ACTIONS(1190), - [anon_sym___forceinline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym___thread] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym__Nonnull] = ACTIONS(1190), - [anon_sym_alignas] = ACTIONS(1190), - [anon_sym__Alignas] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym___alignof__] = ACTIONS(1190), - [anon_sym___alignof] = ACTIONS(1190), - [anon_sym__alignof] = ACTIONS(1190), - [anon_sym_alignof] = ACTIONS(1190), - [anon_sym__Alignof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [anon_sym___asm] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___attribute] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym__Nonnull] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [anon_sym___asm] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1194), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), - [sym_preproc_directive] = ACTIONS(1194), - [anon_sym_LPAREN2] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1194), - [anon_sym_typedef] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym___attribute__] = ACTIONS(1194), - [anon_sym___attribute] = ACTIONS(1194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), - [anon_sym___declspec] = ACTIONS(1194), - [anon_sym___cdecl] = ACTIONS(1194), - [anon_sym___clrcall] = ACTIONS(1194), - [anon_sym___stdcall] = ACTIONS(1194), - [anon_sym___fastcall] = ACTIONS(1194), - [anon_sym___thiscall] = ACTIONS(1194), - [anon_sym___vectorcall] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1194), - [anon_sym_unsigned] = ACTIONS(1194), - [anon_sym_long] = ACTIONS(1194), - [anon_sym_short] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_auto] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_inline] = ACTIONS(1194), - [anon_sym___inline] = ACTIONS(1194), - [anon_sym___inline__] = ACTIONS(1194), - [anon_sym___forceinline] = ACTIONS(1194), - [anon_sym_thread_local] = ACTIONS(1194), - [anon_sym___thread] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_constexpr] = ACTIONS(1194), - [anon_sym_volatile] = ACTIONS(1194), - [anon_sym_restrict] = ACTIONS(1194), - [anon_sym___restrict__] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1194), - [anon_sym__Noreturn] = ACTIONS(1194), - [anon_sym_noreturn] = ACTIONS(1194), - [anon_sym__Nonnull] = ACTIONS(1194), - [anon_sym_alignas] = ACTIONS(1194), - [anon_sym__Alignas] = ACTIONS(1194), - [sym_primitive_type] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1194), - [anon_sym___try] = ACTIONS(1194), - [anon_sym___leave] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym___alignof__] = ACTIONS(1194), - [anon_sym___alignof] = ACTIONS(1194), - [anon_sym__alignof] = ACTIONS(1194), - [anon_sym_alignof] = ACTIONS(1194), - [anon_sym__Alignof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(1194), - [anon_sym__Generic] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1194), - [anon_sym___asm__] = ACTIONS(1194), - [anon_sym___asm] = ACTIONS(1194), - [sym_number_literal] = ACTIONS(1196), - [anon_sym_L_SQUOTE] = ACTIONS(1196), - [anon_sym_u_SQUOTE] = ACTIONS(1196), - [anon_sym_U_SQUOTE] = ACTIONS(1196), - [anon_sym_u8_SQUOTE] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_L_DQUOTE] = ACTIONS(1196), - [anon_sym_u_DQUOTE] = ACTIONS(1196), - [anon_sym_U_DQUOTE] = ACTIONS(1196), - [anon_sym_u8_DQUOTE] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_true] = ACTIONS(1194), - [sym_false] = ACTIONS(1194), - [anon_sym_NULL] = ACTIONS(1194), - [anon_sym_nullptr] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___attribute] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym__Nonnull] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [anon_sym___asm] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1198), - [aux_sym_preproc_include_token1] = ACTIONS(1198), - [aux_sym_preproc_def_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1198), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym___extension__] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym___attribute__] = ACTIONS(1198), - [anon_sym___attribute] = ACTIONS(1198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), - [anon_sym___declspec] = ACTIONS(1198), - [anon_sym___cdecl] = ACTIONS(1198), - [anon_sym___clrcall] = ACTIONS(1198), - [anon_sym___stdcall] = ACTIONS(1198), - [anon_sym___fastcall] = ACTIONS(1198), - [anon_sym___thiscall] = ACTIONS(1198), - [anon_sym___vectorcall] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_inline] = ACTIONS(1198), - [anon_sym___inline] = ACTIONS(1198), - [anon_sym___inline__] = ACTIONS(1198), - [anon_sym___forceinline] = ACTIONS(1198), - [anon_sym_thread_local] = ACTIONS(1198), - [anon_sym___thread] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_constexpr] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym___restrict__] = ACTIONS(1198), - [anon_sym__Atomic] = ACTIONS(1198), - [anon_sym__Noreturn] = ACTIONS(1198), - [anon_sym_noreturn] = ACTIONS(1198), - [anon_sym__Nonnull] = ACTIONS(1198), - [anon_sym_alignas] = ACTIONS(1198), - [anon_sym__Alignas] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_goto] = ACTIONS(1198), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1198), - [anon_sym___alignof__] = ACTIONS(1198), - [anon_sym___alignof] = ACTIONS(1198), - [anon_sym__alignof] = ACTIONS(1198), - [anon_sym_alignof] = ACTIONS(1198), - [anon_sym__Alignof] = ACTIONS(1198), - [anon_sym_offsetof] = ACTIONS(1198), - [anon_sym__Generic] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1198), - [anon_sym___asm__] = ACTIONS(1198), - [anon_sym___asm] = ACTIONS(1198), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_L_SQUOTE] = ACTIONS(1200), - [anon_sym_u_SQUOTE] = ACTIONS(1200), - [anon_sym_U_SQUOTE] = ACTIONS(1200), - [anon_sym_u8_SQUOTE] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_L_DQUOTE] = ACTIONS(1200), - [anon_sym_u_DQUOTE] = ACTIONS(1200), - [anon_sym_U_DQUOTE] = ACTIONS(1200), - [anon_sym_u8_DQUOTE] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_true] = ACTIONS(1198), - [sym_false] = ACTIONS(1198), - [anon_sym_NULL] = ACTIONS(1198), - [anon_sym_nullptr] = ACTIONS(1198), + [151] = { + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym___extension__] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym___attribute] = ACTIONS(1158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(1158), + [anon_sym___cdecl] = ACTIONS(1158), + [anon_sym___clrcall] = ACTIONS(1158), + [anon_sym___stdcall] = ACTIONS(1158), + [anon_sym___fastcall] = ACTIONS(1158), + [anon_sym___thiscall] = ACTIONS(1158), + [anon_sym___vectorcall] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___inline] = ACTIONS(1158), + [anon_sym___inline__] = ACTIONS(1158), + [anon_sym___forceinline] = ACTIONS(1158), + [anon_sym_thread_local] = ACTIONS(1158), + [anon_sym___thread] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_constexpr] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym___restrict__] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym__Noreturn] = ACTIONS(1158), + [anon_sym_noreturn] = ACTIONS(1158), + [anon_sym__Nonnull] = ACTIONS(1158), + [anon_sym_alignas] = ACTIONS(1158), + [anon_sym__Alignas] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1158), + [anon_sym___leave] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym___alignof__] = ACTIONS(1158), + [anon_sym___alignof] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1158), + [anon_sym_alignof] = ACTIONS(1158), + [anon_sym__Alignof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = ACTIONS(1158), + [anon_sym_asm] = ACTIONS(1158), + [anon_sym___asm__] = ACTIONS(1158), + [anon_sym___asm] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_NULL] = ACTIONS(1158), + [anon_sym_nullptr] = ACTIONS(1158), [sym_comment] = ACTIONS(3), }, - [163] = { - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___attribute] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym__Nonnull] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [anon_sym___asm] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), + [152] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1186), + [aux_sym_preproc_include_token1] = ACTIONS(1186), + [aux_sym_preproc_def_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym___extension__] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym___attribute__] = ACTIONS(1186), + [anon_sym___attribute] = ACTIONS(1186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), + [anon_sym___declspec] = ACTIONS(1186), + [anon_sym___cdecl] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1186), + [anon_sym___stdcall] = ACTIONS(1186), + [anon_sym___fastcall] = ACTIONS(1186), + [anon_sym___thiscall] = ACTIONS(1186), + [anon_sym___vectorcall] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym___inline] = ACTIONS(1186), + [anon_sym___inline__] = ACTIONS(1186), + [anon_sym___forceinline] = ACTIONS(1186), + [anon_sym_thread_local] = ACTIONS(1186), + [anon_sym___thread] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_constexpr] = ACTIONS(1186), + [anon_sym_volatile] = ACTIONS(1186), + [anon_sym_restrict] = ACTIONS(1186), + [anon_sym___restrict__] = ACTIONS(1186), + [anon_sym__Atomic] = ACTIONS(1186), + [anon_sym__Noreturn] = ACTIONS(1186), + [anon_sym_noreturn] = ACTIONS(1186), + [anon_sym__Nonnull] = ACTIONS(1186), + [anon_sym_alignas] = ACTIONS(1186), + [anon_sym__Alignas] = ACTIONS(1186), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym___try] = ACTIONS(1186), + [anon_sym___leave] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym___alignof__] = ACTIONS(1186), + [anon_sym___alignof] = ACTIONS(1186), + [anon_sym__alignof] = ACTIONS(1186), + [anon_sym_alignof] = ACTIONS(1186), + [anon_sym__Alignof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = ACTIONS(1186), + [anon_sym_asm] = ACTIONS(1186), + [anon_sym___asm__] = ACTIONS(1186), + [anon_sym___asm] = ACTIONS(1186), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(1188), + [anon_sym_u_SQUOTE] = ACTIONS(1188), + [anon_sym_U_SQUOTE] = ACTIONS(1188), + [anon_sym_u8_SQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_L_DQUOTE] = ACTIONS(1188), + [anon_sym_u_DQUOTE] = ACTIONS(1188), + [anon_sym_U_DQUOTE] = ACTIONS(1188), + [anon_sym_u8_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [anon_sym_NULL] = ACTIONS(1186), + [anon_sym_nullptr] = ACTIONS(1186), [sym_comment] = ACTIONS(3), }, - [164] = { - [sym_identifier] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___attribute] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym__Nonnull] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [anon_sym___asm] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [153] = { + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym___attribute] = ACTIONS(1146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), + [anon_sym___declspec] = ACTIONS(1146), + [anon_sym___cdecl] = ACTIONS(1146), + [anon_sym___clrcall] = ACTIONS(1146), + [anon_sym___stdcall] = ACTIONS(1146), + [anon_sym___fastcall] = ACTIONS(1146), + [anon_sym___thiscall] = ACTIONS(1146), + [anon_sym___vectorcall] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym___inline] = ACTIONS(1146), + [anon_sym___inline__] = ACTIONS(1146), + [anon_sym___forceinline] = ACTIONS(1146), + [anon_sym_thread_local] = ACTIONS(1146), + [anon_sym___thread] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_constexpr] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym___restrict__] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym__Noreturn] = ACTIONS(1146), + [anon_sym_noreturn] = ACTIONS(1146), + [anon_sym__Nonnull] = ACTIONS(1146), + [anon_sym_alignas] = ACTIONS(1146), + [anon_sym__Alignas] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1146), + [anon_sym___leave] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym___alignof__] = ACTIONS(1146), + [anon_sym___alignof] = ACTIONS(1146), + [anon_sym__alignof] = ACTIONS(1146), + [anon_sym_alignof] = ACTIONS(1146), + [anon_sym__Alignof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = ACTIONS(1146), + [anon_sym_asm] = ACTIONS(1146), + [anon_sym___asm__] = ACTIONS(1146), + [anon_sym___asm] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [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(1146), + [sym_false] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_nullptr] = ACTIONS(1146), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(1246), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___attribute] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym__Nonnull] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [anon_sym___asm] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), + [154] = { + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym___extension__] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym___attribute] = ACTIONS(1134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym___declspec] = ACTIONS(1134), + [anon_sym___cdecl] = ACTIONS(1134), + [anon_sym___clrcall] = ACTIONS(1134), + [anon_sym___stdcall] = ACTIONS(1134), + [anon_sym___fastcall] = ACTIONS(1134), + [anon_sym___thiscall] = ACTIONS(1134), + [anon_sym___vectorcall] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym___inline] = ACTIONS(1134), + [anon_sym___inline__] = ACTIONS(1134), + [anon_sym___forceinline] = ACTIONS(1134), + [anon_sym_thread_local] = ACTIONS(1134), + [anon_sym___thread] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_constexpr] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym___restrict__] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym__Noreturn] = ACTIONS(1134), + [anon_sym_noreturn] = ACTIONS(1134), + [anon_sym__Nonnull] = ACTIONS(1134), + [anon_sym_alignas] = ACTIONS(1134), + [anon_sym__Alignas] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym___try] = ACTIONS(1134), + [anon_sym___leave] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym___alignof__] = ACTIONS(1134), + [anon_sym___alignof] = ACTIONS(1134), + [anon_sym__alignof] = ACTIONS(1134), + [anon_sym_alignof] = ACTIONS(1134), + [anon_sym__Alignof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = ACTIONS(1134), + [anon_sym_asm] = ACTIONS(1134), + [anon_sym___asm__] = ACTIONS(1134), + [anon_sym___asm] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [anon_sym_NULL] = ACTIONS(1134), + [anon_sym_nullptr] = ACTIONS(1134), [sym_comment] = ACTIONS(3), }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), + [155] = { + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym___attribute] = ACTIONS(1150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym___declspec] = ACTIONS(1150), + [anon_sym___cdecl] = ACTIONS(1150), + [anon_sym___clrcall] = ACTIONS(1150), + [anon_sym___stdcall] = ACTIONS(1150), + [anon_sym___fastcall] = ACTIONS(1150), + [anon_sym___thiscall] = ACTIONS(1150), + [anon_sym___vectorcall] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym___inline] = ACTIONS(1150), + [anon_sym___inline__] = ACTIONS(1150), + [anon_sym___forceinline] = ACTIONS(1150), + [anon_sym_thread_local] = ACTIONS(1150), + [anon_sym___thread] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_constexpr] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym___restrict__] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym__Noreturn] = ACTIONS(1150), + [anon_sym_noreturn] = ACTIONS(1150), + [anon_sym__Nonnull] = ACTIONS(1150), + [anon_sym_alignas] = ACTIONS(1150), + [anon_sym__Alignas] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1150), + [anon_sym___leave] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym___alignof__] = ACTIONS(1150), + [anon_sym___alignof] = ACTIONS(1150), + [anon_sym__alignof] = ACTIONS(1150), + [anon_sym_alignof] = ACTIONS(1150), + [anon_sym__Alignof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1150), + [anon_sym_asm] = ACTIONS(1150), + [anon_sym___asm__] = ACTIONS(1150), + [anon_sym___asm] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [anon_sym_NULL] = ACTIONS(1150), + [anon_sym_nullptr] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + }, + [156] = { + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym___attribute] = ACTIONS(1166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym___declspec] = ACTIONS(1166), + [anon_sym___cdecl] = ACTIONS(1166), + [anon_sym___clrcall] = ACTIONS(1166), + [anon_sym___stdcall] = ACTIONS(1166), + [anon_sym___fastcall] = ACTIONS(1166), + [anon_sym___thiscall] = ACTIONS(1166), + [anon_sym___vectorcall] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___inline] = ACTIONS(1166), + [anon_sym___inline__] = ACTIONS(1166), + [anon_sym___forceinline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1166), + [anon_sym___thread] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_constexpr] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym___restrict__] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym__Noreturn] = ACTIONS(1166), + [anon_sym_noreturn] = ACTIONS(1166), + [anon_sym__Nonnull] = ACTIONS(1166), + [anon_sym_alignas] = ACTIONS(1166), + [anon_sym__Alignas] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1166), + [anon_sym___leave] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym___alignof__] = ACTIONS(1166), + [anon_sym___alignof] = ACTIONS(1166), + [anon_sym__alignof] = ACTIONS(1166), + [anon_sym_alignof] = ACTIONS(1166), + [anon_sym__Alignof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = ACTIONS(1166), + [anon_sym_asm] = ACTIONS(1166), + [anon_sym___asm__] = ACTIONS(1166), + [anon_sym___asm] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_NULL] = ACTIONS(1166), + [anon_sym_nullptr] = ACTIONS(1166), [sym_comment] = ACTIONS(3), }, - [167] = { - [sym_identifier] = ACTIONS(1250), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___attribute] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym__Nonnull] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [anon_sym___asm] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [157] = { + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym___attribute] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [anon_sym__Nonnull] = ACTIONS(1234), + [anon_sym_alignas] = ACTIONS(1234), + [anon_sym__Alignas] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [anon_sym___asm] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1258), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___attribute] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym__Nonnull] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [anon_sym___asm] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), + [158] = { + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym___extension__] = ACTIONS(1170), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym___attribute] = ACTIONS(1170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), + [anon_sym___declspec] = ACTIONS(1170), + [anon_sym___cdecl] = ACTIONS(1170), + [anon_sym___clrcall] = ACTIONS(1170), + [anon_sym___stdcall] = ACTIONS(1170), + [anon_sym___fastcall] = ACTIONS(1170), + [anon_sym___thiscall] = ACTIONS(1170), + [anon_sym___vectorcall] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym___inline] = ACTIONS(1170), + [anon_sym___inline__] = ACTIONS(1170), + [anon_sym___forceinline] = ACTIONS(1170), + [anon_sym_thread_local] = ACTIONS(1170), + [anon_sym___thread] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_constexpr] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym___restrict__] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym__Noreturn] = ACTIONS(1170), + [anon_sym_noreturn] = ACTIONS(1170), + [anon_sym__Nonnull] = ACTIONS(1170), + [anon_sym_alignas] = ACTIONS(1170), + [anon_sym__Alignas] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym___try] = ACTIONS(1170), + [anon_sym___leave] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym___alignof__] = ACTIONS(1170), + [anon_sym___alignof] = ACTIONS(1170), + [anon_sym__alignof] = ACTIONS(1170), + [anon_sym_alignof] = ACTIONS(1170), + [anon_sym__Alignof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = ACTIONS(1170), + [anon_sym_asm] = ACTIONS(1170), + [anon_sym___asm__] = ACTIONS(1170), + [anon_sym___asm] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [anon_sym_NULL] = ACTIONS(1170), + [anon_sym_nullptr] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym___attribute] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [anon_sym__Nonnull] = ACTIONS(1174), + [anon_sym_alignas] = ACTIONS(1174), + [anon_sym__Alignas] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [anon_sym___asm] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), [sym_comment] = ACTIONS(3), }, - [169] = { + [160] = { + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym___attribute] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [anon_sym__Nonnull] = ACTIONS(1234), + [anon_sym_alignas] = ACTIONS(1234), + [anon_sym__Alignas] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [anon_sym___asm] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + }, + [161] = { [ts_builtin_sym_end] = ACTIONS(1228), [sym_identifier] = ACTIONS(1226), [aux_sym_preproc_include_token1] = ACTIONS(1226), @@ -34387,1017 +33527,1017 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), [anon_sym___declspec] = ACTIONS(1226), [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym__Nonnull] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [anon_sym___asm] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [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___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = 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_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1218), - [anon_sym__Nonnull] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = 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), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1186), - [aux_sym_preproc_include_token1] = ACTIONS(1186), - [aux_sym_preproc_def_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), - [sym_preproc_directive] = ACTIONS(1186), - [anon_sym_LPAREN2] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym___extension__] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym___attribute__] = ACTIONS(1186), - [anon_sym___attribute] = ACTIONS(1186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), - [anon_sym___declspec] = ACTIONS(1186), - [anon_sym___cdecl] = ACTIONS(1186), - [anon_sym___clrcall] = ACTIONS(1186), - [anon_sym___stdcall] = ACTIONS(1186), - [anon_sym___fastcall] = ACTIONS(1186), - [anon_sym___thiscall] = ACTIONS(1186), - [anon_sym___vectorcall] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_auto] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_inline] = ACTIONS(1186), - [anon_sym___inline] = ACTIONS(1186), - [anon_sym___inline__] = ACTIONS(1186), - [anon_sym___forceinline] = ACTIONS(1186), - [anon_sym_thread_local] = ACTIONS(1186), - [anon_sym___thread] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_constexpr] = ACTIONS(1186), - [anon_sym_volatile] = ACTIONS(1186), - [anon_sym_restrict] = ACTIONS(1186), - [anon_sym___restrict__] = ACTIONS(1186), - [anon_sym__Atomic] = ACTIONS(1186), - [anon_sym__Noreturn] = ACTIONS(1186), - [anon_sym_noreturn] = ACTIONS(1186), - [anon_sym__Nonnull] = ACTIONS(1186), - [anon_sym_alignas] = ACTIONS(1186), - [anon_sym__Alignas] = ACTIONS(1186), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym___try] = ACTIONS(1186), - [anon_sym___leave] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_sizeof] = ACTIONS(1186), - [anon_sym___alignof__] = ACTIONS(1186), - [anon_sym___alignof] = ACTIONS(1186), - [anon_sym__alignof] = ACTIONS(1186), - [anon_sym_alignof] = ACTIONS(1186), - [anon_sym__Alignof] = ACTIONS(1186), - [anon_sym_offsetof] = ACTIONS(1186), - [anon_sym__Generic] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym___asm__] = ACTIONS(1186), - [anon_sym___asm] = ACTIONS(1186), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(1188), - [anon_sym_u_SQUOTE] = ACTIONS(1188), - [anon_sym_U_SQUOTE] = ACTIONS(1188), - [anon_sym_u8_SQUOTE] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_L_DQUOTE] = ACTIONS(1188), - [anon_sym_u_DQUOTE] = ACTIONS(1188), - [anon_sym_U_DQUOTE] = ACTIONS(1188), - [anon_sym_u8_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_true] = ACTIONS(1186), - [sym_false] = ACTIONS(1186), - [anon_sym_NULL] = ACTIONS(1186), - [anon_sym_nullptr] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1226), + [anon_sym___stdcall] = ACTIONS(1226), + [anon_sym___fastcall] = ACTIONS(1226), + [anon_sym___thiscall] = ACTIONS(1226), + [anon_sym___vectorcall] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym___inline] = ACTIONS(1226), + [anon_sym___inline__] = ACTIONS(1226), + [anon_sym___forceinline] = ACTIONS(1226), + [anon_sym_thread_local] = ACTIONS(1226), + [anon_sym___thread] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_constexpr] = ACTIONS(1226), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [anon_sym___restrict__] = ACTIONS(1226), + [anon_sym__Atomic] = ACTIONS(1226), + [anon_sym__Noreturn] = ACTIONS(1226), + [anon_sym_noreturn] = ACTIONS(1226), + [anon_sym__Nonnull] = ACTIONS(1226), + [anon_sym_alignas] = ACTIONS(1226), + [anon_sym__Alignas] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym___try] = ACTIONS(1226), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym___alignof__] = ACTIONS(1226), + [anon_sym___alignof] = ACTIONS(1226), + [anon_sym__alignof] = ACTIONS(1226), + [anon_sym_alignof] = ACTIONS(1226), + [anon_sym__Alignof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = ACTIONS(1226), + [anon_sym_asm] = ACTIONS(1226), + [anon_sym___asm__] = ACTIONS(1226), + [anon_sym___asm] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym_u_SQUOTE] = ACTIONS(1228), + [anon_sym_U_SQUOTE] = ACTIONS(1228), + [anon_sym_u8_SQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_u_DQUOTE] = ACTIONS(1228), + [anon_sym_U_DQUOTE] = ACTIONS(1228), + [anon_sym_u8_DQUOTE] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_NULL] = ACTIONS(1226), + [anon_sym_nullptr] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_identifier] = ACTIONS(1254), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___attribute] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym__Nonnull] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [anon_sym___asm] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), + [162] = { + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym___attribute] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [anon_sym__Nonnull] = ACTIONS(1238), + [anon_sym_alignas] = ACTIONS(1238), + [anon_sym__Alignas] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [anon_sym___asm] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1208), - [sym_identifier] = ACTIONS(1206), - [aux_sym_preproc_include_token1] = ACTIONS(1206), - [aux_sym_preproc_def_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym___attribute__] = ACTIONS(1206), - [anon_sym___attribute] = ACTIONS(1206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), - [anon_sym___declspec] = ACTIONS(1206), - [anon_sym___cdecl] = ACTIONS(1206), - [anon_sym___clrcall] = ACTIONS(1206), - [anon_sym___stdcall] = ACTIONS(1206), - [anon_sym___fastcall] = ACTIONS(1206), - [anon_sym___thiscall] = ACTIONS(1206), - [anon_sym___vectorcall] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1206), - [anon_sym_unsigned] = ACTIONS(1206), - [anon_sym_long] = ACTIONS(1206), - [anon_sym_short] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym___inline] = ACTIONS(1206), - [anon_sym___inline__] = ACTIONS(1206), - [anon_sym___forceinline] = ACTIONS(1206), - [anon_sym_thread_local] = ACTIONS(1206), - [anon_sym___thread] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_constexpr] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym___restrict__] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym__Noreturn] = ACTIONS(1206), - [anon_sym_noreturn] = ACTIONS(1206), - [anon_sym__Nonnull] = ACTIONS(1206), - [anon_sym_alignas] = ACTIONS(1206), - [anon_sym__Alignas] = ACTIONS(1206), - [sym_primitive_type] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_goto] = ACTIONS(1206), - [anon_sym___try] = ACTIONS(1206), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1206), - [anon_sym___alignof__] = ACTIONS(1206), - [anon_sym___alignof] = ACTIONS(1206), - [anon_sym__alignof] = ACTIONS(1206), - [anon_sym_alignof] = ACTIONS(1206), - [anon_sym__Alignof] = ACTIONS(1206), - [anon_sym_offsetof] = ACTIONS(1206), - [anon_sym__Generic] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1206), - [anon_sym___asm__] = ACTIONS(1206), - [anon_sym___asm] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_L_SQUOTE] = ACTIONS(1208), - [anon_sym_u_SQUOTE] = ACTIONS(1208), - [anon_sym_U_SQUOTE] = ACTIONS(1208), - [anon_sym_u8_SQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_L_DQUOTE] = ACTIONS(1208), - [anon_sym_u_DQUOTE] = ACTIONS(1208), - [anon_sym_U_DQUOTE] = ACTIONS(1208), - [anon_sym_u8_DQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [anon_sym_NULL] = ACTIONS(1206), - [anon_sym_nullptr] = ACTIONS(1206), + [163] = { + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [sym_preproc_directive] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym___extension__] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym___attribute__] = ACTIONS(1230), + [anon_sym___attribute] = ACTIONS(1230), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), + [anon_sym___declspec] = ACTIONS(1230), + [anon_sym___cdecl] = ACTIONS(1230), + [anon_sym___clrcall] = ACTIONS(1230), + [anon_sym___stdcall] = ACTIONS(1230), + [anon_sym___fastcall] = ACTIONS(1230), + [anon_sym___thiscall] = ACTIONS(1230), + [anon_sym___vectorcall] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym___inline] = ACTIONS(1230), + [anon_sym___inline__] = ACTIONS(1230), + [anon_sym___forceinline] = ACTIONS(1230), + [anon_sym_thread_local] = ACTIONS(1230), + [anon_sym___thread] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_constexpr] = ACTIONS(1230), + [anon_sym_volatile] = ACTIONS(1230), + [anon_sym_restrict] = ACTIONS(1230), + [anon_sym___restrict__] = ACTIONS(1230), + [anon_sym__Atomic] = ACTIONS(1230), + [anon_sym__Noreturn] = ACTIONS(1230), + [anon_sym_noreturn] = ACTIONS(1230), + [anon_sym__Nonnull] = ACTIONS(1230), + [anon_sym_alignas] = ACTIONS(1230), + [anon_sym__Alignas] = ACTIONS(1230), + [sym_primitive_type] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_goto] = ACTIONS(1230), + [anon_sym___try] = ACTIONS(1230), + [anon_sym___leave] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym___alignof__] = ACTIONS(1230), + [anon_sym___alignof] = ACTIONS(1230), + [anon_sym__alignof] = ACTIONS(1230), + [anon_sym_alignof] = ACTIONS(1230), + [anon_sym__Alignof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = ACTIONS(1230), + [anon_sym_asm] = ACTIONS(1230), + [anon_sym___asm__] = ACTIONS(1230), + [anon_sym___asm] = ACTIONS(1230), + [sym_number_literal] = ACTIONS(1232), + [anon_sym_L_SQUOTE] = ACTIONS(1232), + [anon_sym_u_SQUOTE] = ACTIONS(1232), + [anon_sym_U_SQUOTE] = ACTIONS(1232), + [anon_sym_u8_SQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_L_DQUOTE] = ACTIONS(1232), + [anon_sym_u_DQUOTE] = ACTIONS(1232), + [anon_sym_U_DQUOTE] = ACTIONS(1232), + [anon_sym_u8_DQUOTE] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [anon_sym_NULL] = ACTIONS(1230), + [anon_sym_nullptr] = ACTIONS(1230), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_LPAREN2] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [anon_sym___attribute] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), + [anon_sym___declspec] = ACTIONS(1214), + [anon_sym___cdecl] = ACTIONS(1214), + [anon_sym___clrcall] = ACTIONS(1214), + [anon_sym___stdcall] = ACTIONS(1214), + [anon_sym___fastcall] = ACTIONS(1214), + [anon_sym___thiscall] = ACTIONS(1214), + [anon_sym___vectorcall] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___inline] = ACTIONS(1214), + [anon_sym___inline__] = ACTIONS(1214), + [anon_sym___forceinline] = ACTIONS(1214), + [anon_sym_thread_local] = ACTIONS(1214), + [anon_sym___thread] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_constexpr] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym___restrict__] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym__Noreturn] = ACTIONS(1214), + [anon_sym_noreturn] = ACTIONS(1214), + [anon_sym__Nonnull] = ACTIONS(1214), + [anon_sym_alignas] = ACTIONS(1214), + [anon_sym__Alignas] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym___try] = ACTIONS(1214), + [anon_sym___leave] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym___alignof__] = ACTIONS(1214), + [anon_sym___alignof] = ACTIONS(1214), + [anon_sym__alignof] = ACTIONS(1214), + [anon_sym_alignof] = ACTIONS(1214), + [anon_sym__Alignof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = ACTIONS(1214), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [anon_sym___asm] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1216), + [anon_sym_L_SQUOTE] = ACTIONS(1216), + [anon_sym_u_SQUOTE] = ACTIONS(1216), + [anon_sym_U_SQUOTE] = ACTIONS(1216), + [anon_sym_u8_SQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_L_DQUOTE] = ACTIONS(1216), + [anon_sym_u_DQUOTE] = ACTIONS(1216), + [anon_sym_U_DQUOTE] = ACTIONS(1216), + [anon_sym_u8_DQUOTE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [anon_sym_NULL] = ACTIONS(1214), + [anon_sym_nullptr] = ACTIONS(1214), [sym_comment] = ACTIONS(3), }, - [175] = { - [sym_identifier] = ACTIONS(1258), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___attribute] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym__Nonnull] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [anon_sym___asm] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), + [165] = { + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym___extension__] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym___attribute] = ACTIONS(1226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), + [anon_sym___declspec] = ACTIONS(1226), + [anon_sym___cdecl] = ACTIONS(1226), + [anon_sym___clrcall] = ACTIONS(1226), + [anon_sym___stdcall] = ACTIONS(1226), + [anon_sym___fastcall] = ACTIONS(1226), + [anon_sym___thiscall] = ACTIONS(1226), + [anon_sym___vectorcall] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym___inline] = ACTIONS(1226), + [anon_sym___inline__] = ACTIONS(1226), + [anon_sym___forceinline] = ACTIONS(1226), + [anon_sym_thread_local] = ACTIONS(1226), + [anon_sym___thread] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_constexpr] = ACTIONS(1226), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [anon_sym___restrict__] = ACTIONS(1226), + [anon_sym__Atomic] = ACTIONS(1226), + [anon_sym__Noreturn] = ACTIONS(1226), + [anon_sym_noreturn] = ACTIONS(1226), + [anon_sym__Nonnull] = ACTIONS(1226), + [anon_sym_alignas] = ACTIONS(1226), + [anon_sym__Alignas] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym___try] = ACTIONS(1226), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym___alignof__] = ACTIONS(1226), + [anon_sym___alignof] = ACTIONS(1226), + [anon_sym__alignof] = ACTIONS(1226), + [anon_sym_alignof] = ACTIONS(1226), + [anon_sym__Alignof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = ACTIONS(1226), + [anon_sym_asm] = ACTIONS(1226), + [anon_sym___asm__] = ACTIONS(1226), + [anon_sym___asm] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym_u_SQUOTE] = ACTIONS(1228), + [anon_sym_U_SQUOTE] = ACTIONS(1228), + [anon_sym_u8_SQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_u_DQUOTE] = ACTIONS(1228), + [anon_sym_U_DQUOTE] = ACTIONS(1228), + [anon_sym_u8_DQUOTE] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_NULL] = ACTIONS(1226), + [anon_sym_nullptr] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [176] = { - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_include_token1] = ACTIONS(1210), - [aux_sym_preproc_def_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym___extension__] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym___attribute__] = ACTIONS(1210), - [anon_sym___attribute] = ACTIONS(1210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), - [anon_sym___declspec] = ACTIONS(1210), - [anon_sym___cdecl] = ACTIONS(1210), - [anon_sym___clrcall] = ACTIONS(1210), - [anon_sym___stdcall] = ACTIONS(1210), - [anon_sym___fastcall] = ACTIONS(1210), - [anon_sym___thiscall] = ACTIONS(1210), - [anon_sym___vectorcall] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_inline] = ACTIONS(1210), - [anon_sym___inline] = ACTIONS(1210), - [anon_sym___inline__] = ACTIONS(1210), - [anon_sym___forceinline] = ACTIONS(1210), - [anon_sym_thread_local] = ACTIONS(1210), - [anon_sym___thread] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_constexpr] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym___restrict__] = ACTIONS(1210), - [anon_sym__Atomic] = ACTIONS(1210), - [anon_sym__Noreturn] = ACTIONS(1210), - [anon_sym_noreturn] = ACTIONS(1210), - [anon_sym__Nonnull] = ACTIONS(1210), - [anon_sym_alignas] = ACTIONS(1210), - [anon_sym__Alignas] = ACTIONS(1210), - [sym_primitive_type] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym___try] = ACTIONS(1210), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym___alignof__] = ACTIONS(1210), - [anon_sym___alignof] = ACTIONS(1210), - [anon_sym__alignof] = ACTIONS(1210), - [anon_sym_alignof] = ACTIONS(1210), - [anon_sym__Alignof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1210), - [anon_sym__Generic] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1210), - [anon_sym___asm__] = ACTIONS(1210), - [anon_sym___asm] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_L_SQUOTE] = ACTIONS(1212), - [anon_sym_u_SQUOTE] = ACTIONS(1212), - [anon_sym_U_SQUOTE] = ACTIONS(1212), - [anon_sym_u8_SQUOTE] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [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(1210), - [sym_false] = ACTIONS(1210), - [anon_sym_NULL] = ACTIONS(1210), - [anon_sym_nullptr] = ACTIONS(1210), + [166] = { + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym___attribute] = ACTIONS(1162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), + [anon_sym___declspec] = ACTIONS(1162), + [anon_sym___cdecl] = ACTIONS(1162), + [anon_sym___clrcall] = ACTIONS(1162), + [anon_sym___stdcall] = ACTIONS(1162), + [anon_sym___fastcall] = ACTIONS(1162), + [anon_sym___thiscall] = ACTIONS(1162), + [anon_sym___vectorcall] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym___inline] = ACTIONS(1162), + [anon_sym___inline__] = ACTIONS(1162), + [anon_sym___forceinline] = ACTIONS(1162), + [anon_sym_thread_local] = ACTIONS(1162), + [anon_sym___thread] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_constexpr] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym___restrict__] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym__Noreturn] = ACTIONS(1162), + [anon_sym_noreturn] = ACTIONS(1162), + [anon_sym__Nonnull] = ACTIONS(1162), + [anon_sym_alignas] = ACTIONS(1162), + [anon_sym__Alignas] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1162), + [anon_sym___leave] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym___alignof__] = ACTIONS(1162), + [anon_sym___alignof] = ACTIONS(1162), + [anon_sym__alignof] = ACTIONS(1162), + [anon_sym_alignof] = ACTIONS(1162), + [anon_sym__Alignof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = ACTIONS(1162), + [anon_sym_asm] = ACTIONS(1162), + [anon_sym___asm__] = ACTIONS(1162), + [anon_sym___asm] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [anon_sym_NULL] = ACTIONS(1162), + [anon_sym_nullptr] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym___extension__] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym___attribute] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym___inline] = ACTIONS(1242), + [anon_sym___inline__] = ACTIONS(1242), + [anon_sym___forceinline] = ACTIONS(1242), + [anon_sym_thread_local] = ACTIONS(1242), + [anon_sym___thread] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_constexpr] = ACTIONS(1242), + [anon_sym_volatile] = ACTIONS(1242), + [anon_sym_restrict] = ACTIONS(1242), + [anon_sym___restrict__] = ACTIONS(1242), + [anon_sym__Atomic] = ACTIONS(1242), + [anon_sym__Noreturn] = ACTIONS(1242), + [anon_sym_noreturn] = ACTIONS(1242), + [anon_sym__Nonnull] = ACTIONS(1242), + [anon_sym_alignas] = ACTIONS(1242), + [anon_sym__Alignas] = ACTIONS(1242), + [sym_primitive_type] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_goto] = ACTIONS(1242), + [anon_sym___try] = ACTIONS(1242), + [anon_sym___leave] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym___alignof__] = ACTIONS(1242), + [anon_sym___alignof] = ACTIONS(1242), + [anon_sym__alignof] = ACTIONS(1242), + [anon_sym_alignof] = ACTIONS(1242), + [anon_sym__Alignof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = ACTIONS(1242), + [anon_sym_asm] = ACTIONS(1242), + [anon_sym___asm__] = ACTIONS(1242), + [anon_sym___asm] = ACTIONS(1242), + [sym_number_literal] = ACTIONS(1244), + [anon_sym_L_SQUOTE] = ACTIONS(1244), + [anon_sym_u_SQUOTE] = ACTIONS(1244), + [anon_sym_U_SQUOTE] = ACTIONS(1244), + [anon_sym_u8_SQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [anon_sym_NULL] = ACTIONS(1242), + [anon_sym_nullptr] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym___extension__] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym___attribute] = ACTIONS(1138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym___declspec] = ACTIONS(1138), - [anon_sym___cdecl] = ACTIONS(1138), - [anon_sym___clrcall] = ACTIONS(1138), - [anon_sym___stdcall] = ACTIONS(1138), - [anon_sym___fastcall] = ACTIONS(1138), - [anon_sym___thiscall] = ACTIONS(1138), - [anon_sym___vectorcall] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym___inline] = ACTIONS(1138), - [anon_sym___inline__] = ACTIONS(1138), - [anon_sym___forceinline] = ACTIONS(1138), - [anon_sym_thread_local] = ACTIONS(1138), - [anon_sym___thread] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_constexpr] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym___restrict__] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym__Noreturn] = ACTIONS(1138), - [anon_sym_noreturn] = ACTIONS(1138), - [anon_sym__Nonnull] = ACTIONS(1138), - [anon_sym_alignas] = ACTIONS(1138), - [anon_sym__Alignas] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym___alignof__] = ACTIONS(1138), - [anon_sym___alignof] = ACTIONS(1138), - [anon_sym__alignof] = ACTIONS(1138), - [anon_sym_alignof] = ACTIONS(1138), - [anon_sym__Alignof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1138), - [anon_sym___asm__] = ACTIONS(1138), - [anon_sym___asm] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [anon_sym_NULL] = ACTIONS(1138), - [anon_sym_nullptr] = ACTIONS(1138), + [168] = { + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___attribute] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym__Nonnull] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [anon_sym___asm] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(3), }, - [178] = { - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token2] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___attribute] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym__Nonnull] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [anon_sym___asm] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), + [169] = { + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___attribute] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym__Nonnull] = ACTIONS(1254), + [anon_sym_alignas] = ACTIONS(1254), + [anon_sym__Alignas] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [anon_sym___asm] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym___attribute] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [anon_sym__Nonnull] = ACTIONS(1238), + [anon_sym_alignas] = ACTIONS(1238), + [anon_sym__Alignas] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [anon_sym___asm] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [179] = { + [171] = { + [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1230), [aux_sym_preproc_include_token1] = ACTIONS(1230), [aux_sym_preproc_def_token1] = ACTIONS(1230), [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token2] = ACTIONS(1230), [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), [sym_preproc_directive] = ACTIONS(1230), @@ -35495,728 +34635,1037 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1230), [sym_comment] = ACTIONS(3), }, - [180] = { - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___attribute] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym__Nonnull] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [anon_sym___asm] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [172] = { + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym___attribute] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [anon_sym__Nonnull] = ACTIONS(1154), + [anon_sym_alignas] = ACTIONS(1154), + [anon_sym__Alignas] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [anon_sym___asm] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___attribute] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym__Nonnull] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [anon_sym___asm] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), + [173] = { + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym___attribute] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [anon_sym__Nonnull] = ACTIONS(1138), + [anon_sym_alignas] = ACTIONS(1138), + [anon_sym__Alignas] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [anon_sym___asm] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [174] = { + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym___attribute] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [anon_sym__Nonnull] = ACTIONS(1258), + [anon_sym_alignas] = ACTIONS(1258), + [anon_sym__Alignas] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [anon_sym___asm] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token2] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___attribute] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym__Nonnull] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [anon_sym___asm] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), + [175] = { + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym___attribute] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [anon_sym__Nonnull] = ACTIONS(1178), + [anon_sym_alignas] = ACTIONS(1178), + [anon_sym__Alignas] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [anon_sym___asm] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___attribute] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym__Nonnull] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [anon_sym___asm] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), + [176] = { + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token2] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym___extension__] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym___attribute] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym___declspec] = ACTIONS(1142), + [anon_sym___cdecl] = ACTIONS(1142), + [anon_sym___clrcall] = ACTIONS(1142), + [anon_sym___stdcall] = ACTIONS(1142), + [anon_sym___fastcall] = ACTIONS(1142), + [anon_sym___thiscall] = ACTIONS(1142), + [anon_sym___vectorcall] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym___inline] = ACTIONS(1142), + [anon_sym___inline__] = ACTIONS(1142), + [anon_sym___forceinline] = ACTIONS(1142), + [anon_sym_thread_local] = ACTIONS(1142), + [anon_sym___thread] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_constexpr] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym___restrict__] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym__Noreturn] = ACTIONS(1142), + [anon_sym_noreturn] = ACTIONS(1142), + [anon_sym__Nonnull] = ACTIONS(1142), + [anon_sym_alignas] = ACTIONS(1142), + [anon_sym__Alignas] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym___try] = ACTIONS(1142), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym___alignof__] = ACTIONS(1142), + [anon_sym___alignof] = ACTIONS(1142), + [anon_sym__alignof] = ACTIONS(1142), + [anon_sym_alignof] = ACTIONS(1142), + [anon_sym__Alignof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = ACTIONS(1142), + [anon_sym_asm] = ACTIONS(1142), + [anon_sym___asm__] = ACTIONS(1142), + [anon_sym___asm] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [anon_sym_NULL] = ACTIONS(1142), + [anon_sym_nullptr] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym___extension__] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym___attribute] = ACTIONS(1158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(1158), + [anon_sym___cdecl] = ACTIONS(1158), + [anon_sym___clrcall] = ACTIONS(1158), + [anon_sym___stdcall] = ACTIONS(1158), + [anon_sym___fastcall] = ACTIONS(1158), + [anon_sym___thiscall] = ACTIONS(1158), + [anon_sym___vectorcall] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___inline] = ACTIONS(1158), + [anon_sym___inline__] = ACTIONS(1158), + [anon_sym___forceinline] = ACTIONS(1158), + [anon_sym_thread_local] = ACTIONS(1158), + [anon_sym___thread] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_constexpr] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym___restrict__] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym__Noreturn] = ACTIONS(1158), + [anon_sym_noreturn] = ACTIONS(1158), + [anon_sym__Nonnull] = ACTIONS(1158), + [anon_sym_alignas] = ACTIONS(1158), + [anon_sym__Alignas] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1158), + [anon_sym___leave] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym___alignof__] = ACTIONS(1158), + [anon_sym___alignof] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1158), + [anon_sym_alignof] = ACTIONS(1158), + [anon_sym__Alignof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = ACTIONS(1158), + [anon_sym_asm] = ACTIONS(1158), + [anon_sym___asm__] = ACTIONS(1158), + [anon_sym___asm] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_NULL] = ACTIONS(1158), + [anon_sym_nullptr] = ACTIONS(1158), [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_identifier] = ACTIONS(1246), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token2] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___attribute] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym__Nonnull] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [anon_sym___asm] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), + [178] = { + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token2] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym___extension__] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym___attribute] = ACTIONS(1134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym___declspec] = ACTIONS(1134), + [anon_sym___cdecl] = ACTIONS(1134), + [anon_sym___clrcall] = ACTIONS(1134), + [anon_sym___stdcall] = ACTIONS(1134), + [anon_sym___fastcall] = ACTIONS(1134), + [anon_sym___thiscall] = ACTIONS(1134), + [anon_sym___vectorcall] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym___inline] = ACTIONS(1134), + [anon_sym___inline__] = ACTIONS(1134), + [anon_sym___forceinline] = ACTIONS(1134), + [anon_sym_thread_local] = ACTIONS(1134), + [anon_sym___thread] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_constexpr] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym___restrict__] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym__Noreturn] = ACTIONS(1134), + [anon_sym_noreturn] = ACTIONS(1134), + [anon_sym__Nonnull] = ACTIONS(1134), + [anon_sym_alignas] = ACTIONS(1134), + [anon_sym__Alignas] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym___try] = ACTIONS(1134), + [anon_sym___leave] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym___alignof__] = ACTIONS(1134), + [anon_sym___alignof] = ACTIONS(1134), + [anon_sym__alignof] = ACTIONS(1134), + [anon_sym_alignof] = ACTIONS(1134), + [anon_sym__Alignof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = ACTIONS(1134), + [anon_sym_asm] = ACTIONS(1134), + [anon_sym___asm__] = ACTIONS(1134), + [anon_sym___asm] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [anon_sym_NULL] = ACTIONS(1134), + [anon_sym_nullptr] = ACTIONS(1134), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_identifier] = ACTIONS(1250), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___attribute] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym__Nonnull] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [anon_sym___asm] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [179] = { + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym___attribute] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [anon_sym__Nonnull] = ACTIONS(1154), + [anon_sym_alignas] = ACTIONS(1154), + [anon_sym__Alignas] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [anon_sym___asm] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token2] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [sym_preproc_directive] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym___extension__] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym___attribute__] = ACTIONS(1230), + [anon_sym___attribute] = ACTIONS(1230), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), + [anon_sym___declspec] = ACTIONS(1230), + [anon_sym___cdecl] = ACTIONS(1230), + [anon_sym___clrcall] = ACTIONS(1230), + [anon_sym___stdcall] = ACTIONS(1230), + [anon_sym___fastcall] = ACTIONS(1230), + [anon_sym___thiscall] = ACTIONS(1230), + [anon_sym___vectorcall] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym___inline] = ACTIONS(1230), + [anon_sym___inline__] = ACTIONS(1230), + [anon_sym___forceinline] = ACTIONS(1230), + [anon_sym_thread_local] = ACTIONS(1230), + [anon_sym___thread] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_constexpr] = ACTIONS(1230), + [anon_sym_volatile] = ACTIONS(1230), + [anon_sym_restrict] = ACTIONS(1230), + [anon_sym___restrict__] = ACTIONS(1230), + [anon_sym__Atomic] = ACTIONS(1230), + [anon_sym__Noreturn] = ACTIONS(1230), + [anon_sym_noreturn] = ACTIONS(1230), + [anon_sym__Nonnull] = ACTIONS(1230), + [anon_sym_alignas] = ACTIONS(1230), + [anon_sym__Alignas] = ACTIONS(1230), + [sym_primitive_type] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_goto] = ACTIONS(1230), + [anon_sym___try] = ACTIONS(1230), + [anon_sym___leave] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym___alignof__] = ACTIONS(1230), + [anon_sym___alignof] = ACTIONS(1230), + [anon_sym__alignof] = ACTIONS(1230), + [anon_sym_alignof] = ACTIONS(1230), + [anon_sym__Alignof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = ACTIONS(1230), + [anon_sym_asm] = ACTIONS(1230), + [anon_sym___asm__] = ACTIONS(1230), + [anon_sym___asm] = ACTIONS(1230), + [sym_number_literal] = ACTIONS(1232), + [anon_sym_L_SQUOTE] = ACTIONS(1232), + [anon_sym_u_SQUOTE] = ACTIONS(1232), + [anon_sym_U_SQUOTE] = ACTIONS(1232), + [anon_sym_u8_SQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_L_DQUOTE] = ACTIONS(1232), + [anon_sym_u_DQUOTE] = ACTIONS(1232), + [anon_sym_U_DQUOTE] = ACTIONS(1232), + [anon_sym_u8_DQUOTE] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [anon_sym_NULL] = ACTIONS(1230), + [anon_sym_nullptr] = ACTIONS(1230), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_identifier] = ACTIONS(1258), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token2] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___attribute] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym__Nonnull] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [anon_sym___asm] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), + [181] = { + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token2] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_LPAREN2] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [anon_sym___attribute] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), + [anon_sym___declspec] = ACTIONS(1214), + [anon_sym___cdecl] = ACTIONS(1214), + [anon_sym___clrcall] = ACTIONS(1214), + [anon_sym___stdcall] = ACTIONS(1214), + [anon_sym___fastcall] = ACTIONS(1214), + [anon_sym___thiscall] = ACTIONS(1214), + [anon_sym___vectorcall] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___inline] = ACTIONS(1214), + [anon_sym___inline__] = ACTIONS(1214), + [anon_sym___forceinline] = ACTIONS(1214), + [anon_sym_thread_local] = ACTIONS(1214), + [anon_sym___thread] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_constexpr] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym___restrict__] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym__Noreturn] = ACTIONS(1214), + [anon_sym_noreturn] = ACTIONS(1214), + [anon_sym__Nonnull] = ACTIONS(1214), + [anon_sym_alignas] = ACTIONS(1214), + [anon_sym__Alignas] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym___try] = ACTIONS(1214), + [anon_sym___leave] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym___alignof__] = ACTIONS(1214), + [anon_sym___alignof] = ACTIONS(1214), + [anon_sym__alignof] = ACTIONS(1214), + [anon_sym_alignof] = ACTIONS(1214), + [anon_sym__Alignof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = ACTIONS(1214), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [anon_sym___asm] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1216), + [anon_sym_L_SQUOTE] = ACTIONS(1216), + [anon_sym_u_SQUOTE] = ACTIONS(1216), + [anon_sym_U_SQUOTE] = ACTIONS(1216), + [anon_sym_u8_SQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_L_DQUOTE] = ACTIONS(1216), + [anon_sym_u_DQUOTE] = ACTIONS(1216), + [anon_sym_U_DQUOTE] = ACTIONS(1216), + [anon_sym_u8_DQUOTE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [anon_sym_NULL] = ACTIONS(1214), + [anon_sym_nullptr] = ACTIONS(1214), [sym_comment] = ACTIONS(3), }, - [187] = { + [182] = { [sym_identifier] = ACTIONS(1226), [aux_sym_preproc_include_token1] = ACTIONS(1226), [aux_sym_preproc_def_token1] = ACTIONS(1226), @@ -36319,213 +35768,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [188] = { - [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___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = 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_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1218), - [anon_sym__Nonnull] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = 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), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym___extension__] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym___attribute] = ACTIONS(1142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym___declspec] = ACTIONS(1142), - [anon_sym___cdecl] = ACTIONS(1142), - [anon_sym___clrcall] = ACTIONS(1142), - [anon_sym___stdcall] = ACTIONS(1142), - [anon_sym___fastcall] = ACTIONS(1142), - [anon_sym___thiscall] = ACTIONS(1142), - [anon_sym___vectorcall] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym___inline] = ACTIONS(1142), - [anon_sym___inline__] = ACTIONS(1142), - [anon_sym___forceinline] = ACTIONS(1142), - [anon_sym_thread_local] = ACTIONS(1142), - [anon_sym___thread] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_constexpr] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym___restrict__] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym__Noreturn] = ACTIONS(1142), - [anon_sym_noreturn] = ACTIONS(1142), - [anon_sym__Nonnull] = ACTIONS(1142), - [anon_sym_alignas] = ACTIONS(1142), - [anon_sym__Alignas] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym___try] = ACTIONS(1142), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [anon_sym___alignof__] = ACTIONS(1142), - [anon_sym___alignof] = ACTIONS(1142), - [anon_sym__alignof] = ACTIONS(1142), - [anon_sym_alignof] = ACTIONS(1142), - [anon_sym__Alignof] = ACTIONS(1142), - [anon_sym_offsetof] = ACTIONS(1142), - [anon_sym__Generic] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1142), - [anon_sym___asm__] = ACTIONS(1142), - [anon_sym___asm] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [anon_sym_NULL] = ACTIONS(1142), - [anon_sym_nullptr] = ACTIONS(1142), + [183] = { + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token2] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym___extension__] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym___attribute] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym___inline] = ACTIONS(1242), + [anon_sym___inline__] = ACTIONS(1242), + [anon_sym___forceinline] = ACTIONS(1242), + [anon_sym_thread_local] = ACTIONS(1242), + [anon_sym___thread] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_constexpr] = ACTIONS(1242), + [anon_sym_volatile] = ACTIONS(1242), + [anon_sym_restrict] = ACTIONS(1242), + [anon_sym___restrict__] = ACTIONS(1242), + [anon_sym__Atomic] = ACTIONS(1242), + [anon_sym__Noreturn] = ACTIONS(1242), + [anon_sym_noreturn] = ACTIONS(1242), + [anon_sym__Nonnull] = ACTIONS(1242), + [anon_sym_alignas] = ACTIONS(1242), + [anon_sym__Alignas] = ACTIONS(1242), + [sym_primitive_type] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_goto] = ACTIONS(1242), + [anon_sym___try] = ACTIONS(1242), + [anon_sym___leave] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym___alignof__] = ACTIONS(1242), + [anon_sym___alignof] = ACTIONS(1242), + [anon_sym__alignof] = ACTIONS(1242), + [anon_sym_alignof] = ACTIONS(1242), + [anon_sym__Alignof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = ACTIONS(1242), + [anon_sym_asm] = ACTIONS(1242), + [anon_sym___asm__] = ACTIONS(1242), + [anon_sym___asm] = ACTIONS(1242), + [sym_number_literal] = ACTIONS(1244), + [anon_sym_L_SQUOTE] = ACTIONS(1244), + [anon_sym_u_SQUOTE] = ACTIONS(1244), + [anon_sym_U_SQUOTE] = ACTIONS(1244), + [anon_sym_u8_SQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [anon_sym_NULL] = ACTIONS(1242), + [anon_sym_nullptr] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, - [190] = { + [184] = { + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___attribute] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym__Nonnull] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [anon_sym___asm] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), + [sym_comment] = ACTIONS(3), + }, + [185] = { [sym_identifier] = ACTIONS(1254), [aux_sym_preproc_include_token1] = ACTIONS(1254), [aux_sym_preproc_def_token1] = ACTIONS(1254), @@ -36628,725 +36077,1240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(3), }, + [186] = { + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym___attribute] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [anon_sym__Nonnull] = ACTIONS(1138), + [anon_sym_alignas] = ACTIONS(1138), + [anon_sym__Alignas] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [anon_sym___asm] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [187] = { + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym___attribute] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [anon_sym__Nonnull] = ACTIONS(1178), + [anon_sym_alignas] = ACTIONS(1178), + [anon_sym__Alignas] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [anon_sym___asm] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + }, + [188] = { + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym___attribute] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [anon_sym__Nonnull] = ACTIONS(1154), + [anon_sym_alignas] = ACTIONS(1154), + [anon_sym__Alignas] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [anon_sym___asm] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [189] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym___attribute] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym___inline] = ACTIONS(1190), + [anon_sym___inline__] = ACTIONS(1190), + [anon_sym___forceinline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym___thread] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym__Nonnull] = ACTIONS(1190), + [anon_sym_alignas] = ACTIONS(1190), + [anon_sym__Alignas] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym___alignof__] = ACTIONS(1190), + [anon_sym___alignof] = ACTIONS(1190), + [anon_sym__alignof] = ACTIONS(1190), + [anon_sym_alignof] = ACTIONS(1190), + [anon_sym__Alignof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [anon_sym___asm] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [190] = { + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym___attribute] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [anon_sym__Nonnull] = ACTIONS(1194), + [anon_sym_alignas] = ACTIONS(1194), + [anon_sym__Alignas] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [anon_sym___asm] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + }, [191] = { - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1146), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym___attribute] = ACTIONS(1146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), - [anon_sym___declspec] = ACTIONS(1146), - [anon_sym___cdecl] = ACTIONS(1146), - [anon_sym___clrcall] = ACTIONS(1146), - [anon_sym___stdcall] = ACTIONS(1146), - [anon_sym___fastcall] = ACTIONS(1146), - [anon_sym___thiscall] = ACTIONS(1146), - [anon_sym___vectorcall] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym___inline] = ACTIONS(1146), - [anon_sym___inline__] = ACTIONS(1146), - [anon_sym___forceinline] = ACTIONS(1146), - [anon_sym_thread_local] = ACTIONS(1146), - [anon_sym___thread] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_constexpr] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym___restrict__] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym__Noreturn] = ACTIONS(1146), - [anon_sym_noreturn] = ACTIONS(1146), - [anon_sym__Nonnull] = ACTIONS(1146), - [anon_sym_alignas] = ACTIONS(1146), - [anon_sym__Alignas] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1146), - [anon_sym___leave] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [anon_sym___alignof__] = ACTIONS(1146), - [anon_sym___alignof] = ACTIONS(1146), - [anon_sym__alignof] = ACTIONS(1146), - [anon_sym_alignof] = ACTIONS(1146), - [anon_sym__Alignof] = ACTIONS(1146), - [anon_sym_offsetof] = ACTIONS(1146), - [anon_sym__Generic] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1146), - [anon_sym___asm__] = ACTIONS(1146), - [anon_sym___asm] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [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(1146), - [sym_false] = ACTIONS(1146), - [anon_sym_NULL] = ACTIONS(1146), - [anon_sym_nullptr] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_LPAREN2] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [anon_sym___attribute] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), + [anon_sym___declspec] = ACTIONS(1214), + [anon_sym___cdecl] = ACTIONS(1214), + [anon_sym___clrcall] = ACTIONS(1214), + [anon_sym___stdcall] = ACTIONS(1214), + [anon_sym___fastcall] = ACTIONS(1214), + [anon_sym___thiscall] = ACTIONS(1214), + [anon_sym___vectorcall] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___inline] = ACTIONS(1214), + [anon_sym___inline__] = ACTIONS(1214), + [anon_sym___forceinline] = ACTIONS(1214), + [anon_sym_thread_local] = ACTIONS(1214), + [anon_sym___thread] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_constexpr] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym___restrict__] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym__Noreturn] = ACTIONS(1214), + [anon_sym_noreturn] = ACTIONS(1214), + [anon_sym__Nonnull] = ACTIONS(1214), + [anon_sym_alignas] = ACTIONS(1214), + [anon_sym__Alignas] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym___try] = ACTIONS(1214), + [anon_sym___leave] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym___alignof__] = ACTIONS(1214), + [anon_sym___alignof] = ACTIONS(1214), + [anon_sym__alignof] = ACTIONS(1214), + [anon_sym_alignof] = ACTIONS(1214), + [anon_sym__Alignof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = ACTIONS(1214), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [anon_sym___asm] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1216), + [anon_sym_L_SQUOTE] = ACTIONS(1216), + [anon_sym_u_SQUOTE] = ACTIONS(1216), + [anon_sym_U_SQUOTE] = ACTIONS(1216), + [anon_sym_u8_SQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_L_DQUOTE] = ACTIONS(1216), + [anon_sym_u_DQUOTE] = ACTIONS(1216), + [anon_sym_U_DQUOTE] = ACTIONS(1216), + [anon_sym_u8_DQUOTE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [anon_sym_NULL] = ACTIONS(1214), + [anon_sym_nullptr] = ACTIONS(1214), [sym_comment] = ACTIONS(3), }, [192] = { - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1150), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym___attribute] = ACTIONS(1150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), - [anon_sym___declspec] = ACTIONS(1150), - [anon_sym___cdecl] = ACTIONS(1150), - [anon_sym___clrcall] = ACTIONS(1150), - [anon_sym___stdcall] = ACTIONS(1150), - [anon_sym___fastcall] = ACTIONS(1150), - [anon_sym___thiscall] = ACTIONS(1150), - [anon_sym___vectorcall] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1152), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym___inline] = ACTIONS(1150), - [anon_sym___inline__] = ACTIONS(1150), - [anon_sym___forceinline] = ACTIONS(1150), - [anon_sym_thread_local] = ACTIONS(1150), - [anon_sym___thread] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_constexpr] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym___restrict__] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym__Noreturn] = ACTIONS(1150), - [anon_sym_noreturn] = ACTIONS(1150), - [anon_sym__Nonnull] = ACTIONS(1150), - [anon_sym_alignas] = ACTIONS(1150), - [anon_sym__Alignas] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1150), - [anon_sym___leave] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [anon_sym___alignof__] = ACTIONS(1150), - [anon_sym___alignof] = ACTIONS(1150), - [anon_sym__alignof] = ACTIONS(1150), - [anon_sym_alignof] = ACTIONS(1150), - [anon_sym__Alignof] = ACTIONS(1150), - [anon_sym_offsetof] = ACTIONS(1150), - [anon_sym__Generic] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1150), - [anon_sym___asm__] = ACTIONS(1150), - [anon_sym___asm] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [anon_sym_NULL] = ACTIONS(1150), - [anon_sym_nullptr] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym___attribute] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [anon_sym__Nonnull] = ACTIONS(1258), + [anon_sym_alignas] = ACTIONS(1258), + [anon_sym__Alignas] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [anon_sym___asm] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(3), }, [193] = { - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token2] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym___extension__] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym___attribute] = ACTIONS(1138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym___declspec] = ACTIONS(1138), - [anon_sym___cdecl] = ACTIONS(1138), - [anon_sym___clrcall] = ACTIONS(1138), - [anon_sym___stdcall] = ACTIONS(1138), - [anon_sym___fastcall] = ACTIONS(1138), - [anon_sym___thiscall] = ACTIONS(1138), - [anon_sym___vectorcall] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym___inline] = ACTIONS(1138), - [anon_sym___inline__] = ACTIONS(1138), - [anon_sym___forceinline] = ACTIONS(1138), - [anon_sym_thread_local] = ACTIONS(1138), - [anon_sym___thread] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_constexpr] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym___restrict__] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym__Noreturn] = ACTIONS(1138), - [anon_sym_noreturn] = ACTIONS(1138), - [anon_sym__Nonnull] = ACTIONS(1138), - [anon_sym_alignas] = ACTIONS(1138), - [anon_sym__Alignas] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym___alignof__] = ACTIONS(1138), - [anon_sym___alignof] = ACTIONS(1138), - [anon_sym__alignof] = ACTIONS(1138), - [anon_sym_alignof] = ACTIONS(1138), - [anon_sym__Alignof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1138), - [anon_sym___asm__] = ACTIONS(1138), - [anon_sym___asm] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [anon_sym_NULL] = ACTIONS(1138), - [anon_sym_nullptr] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym___attribute] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym___inline] = ACTIONS(1190), + [anon_sym___inline__] = ACTIONS(1190), + [anon_sym___forceinline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym___thread] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym__Nonnull] = ACTIONS(1190), + [anon_sym_alignas] = ACTIONS(1190), + [anon_sym__Alignas] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym___alignof__] = ACTIONS(1190), + [anon_sym___alignof] = ACTIONS(1190), + [anon_sym__alignof] = ACTIONS(1190), + [anon_sym_alignof] = ACTIONS(1190), + [anon_sym__Alignof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [anon_sym___asm] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, [194] = { - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token2] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym___extension__] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym___attribute] = ACTIONS(1142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym___declspec] = ACTIONS(1142), - [anon_sym___cdecl] = ACTIONS(1142), - [anon_sym___clrcall] = ACTIONS(1142), - [anon_sym___stdcall] = ACTIONS(1142), - [anon_sym___fastcall] = ACTIONS(1142), - [anon_sym___thiscall] = ACTIONS(1142), - [anon_sym___vectorcall] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym___inline] = ACTIONS(1142), - [anon_sym___inline__] = ACTIONS(1142), - [anon_sym___forceinline] = ACTIONS(1142), - [anon_sym_thread_local] = ACTIONS(1142), - [anon_sym___thread] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_constexpr] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym___restrict__] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym__Noreturn] = ACTIONS(1142), - [anon_sym_noreturn] = ACTIONS(1142), - [anon_sym__Nonnull] = ACTIONS(1142), - [anon_sym_alignas] = ACTIONS(1142), - [anon_sym__Alignas] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym___try] = ACTIONS(1142), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [anon_sym___alignof__] = ACTIONS(1142), - [anon_sym___alignof] = ACTIONS(1142), - [anon_sym__alignof] = ACTIONS(1142), - [anon_sym_alignof] = ACTIONS(1142), - [anon_sym__Alignof] = ACTIONS(1142), - [anon_sym_offsetof] = ACTIONS(1142), - [anon_sym__Generic] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1142), - [anon_sym___asm__] = ACTIONS(1142), - [anon_sym___asm] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [anon_sym_NULL] = ACTIONS(1142), - [anon_sym_nullptr] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token2] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1146), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym___attribute] = ACTIONS(1146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), - [anon_sym___declspec] = ACTIONS(1146), - [anon_sym___cdecl] = ACTIONS(1146), - [anon_sym___clrcall] = ACTIONS(1146), - [anon_sym___stdcall] = ACTIONS(1146), - [anon_sym___fastcall] = ACTIONS(1146), - [anon_sym___thiscall] = ACTIONS(1146), - [anon_sym___vectorcall] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym___inline] = ACTIONS(1146), - [anon_sym___inline__] = ACTIONS(1146), - [anon_sym___forceinline] = ACTIONS(1146), - [anon_sym_thread_local] = ACTIONS(1146), - [anon_sym___thread] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_constexpr] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym___restrict__] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym__Noreturn] = ACTIONS(1146), - [anon_sym_noreturn] = ACTIONS(1146), - [anon_sym__Nonnull] = ACTIONS(1146), - [anon_sym_alignas] = ACTIONS(1146), - [anon_sym__Alignas] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1146), - [anon_sym___leave] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [anon_sym___alignof__] = ACTIONS(1146), - [anon_sym___alignof] = ACTIONS(1146), - [anon_sym__alignof] = ACTIONS(1146), - [anon_sym_alignof] = ACTIONS(1146), - [anon_sym__Alignof] = ACTIONS(1146), - [anon_sym_offsetof] = ACTIONS(1146), - [anon_sym__Generic] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1146), - [anon_sym___asm__] = ACTIONS(1146), - [anon_sym___asm] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [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(1146), - [sym_false] = ACTIONS(1146), - [anon_sym_NULL] = ACTIONS(1146), - [anon_sym_nullptr] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token2] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym___attribute] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [anon_sym__Nonnull] = ACTIONS(1194), + [anon_sym_alignas] = ACTIONS(1194), + [anon_sym__Alignas] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [anon_sym___asm] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(1210), + [aux_sym_preproc_def_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token2] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), + [sym_preproc_directive] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym___attribute__] = ACTIONS(1210), + [anon_sym___attribute] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), + [anon_sym___declspec] = ACTIONS(1210), + [anon_sym___cdecl] = ACTIONS(1210), + [anon_sym___clrcall] = ACTIONS(1210), + [anon_sym___stdcall] = ACTIONS(1210), + [anon_sym___fastcall] = ACTIONS(1210), + [anon_sym___thiscall] = ACTIONS(1210), + [anon_sym___vectorcall] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym___inline] = ACTIONS(1210), + [anon_sym___inline__] = ACTIONS(1210), + [anon_sym___forceinline] = ACTIONS(1210), + [anon_sym_thread_local] = ACTIONS(1210), + [anon_sym___thread] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_constexpr] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_restrict] = ACTIONS(1210), + [anon_sym___restrict__] = ACTIONS(1210), + [anon_sym__Atomic] = ACTIONS(1210), + [anon_sym__Noreturn] = ACTIONS(1210), + [anon_sym_noreturn] = ACTIONS(1210), + [anon_sym__Nonnull] = ACTIONS(1210), + [anon_sym_alignas] = ACTIONS(1210), + [anon_sym__Alignas] = ACTIONS(1210), + [sym_primitive_type] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_goto] = ACTIONS(1210), + [anon_sym___try] = ACTIONS(1210), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym___alignof__] = ACTIONS(1210), + [anon_sym___alignof] = ACTIONS(1210), + [anon_sym__alignof] = ACTIONS(1210), + [anon_sym_alignof] = ACTIONS(1210), + [anon_sym__Alignof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [anon_sym___asm] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [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(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, [196] = { - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token2] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1150), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym___attribute] = ACTIONS(1150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), - [anon_sym___declspec] = ACTIONS(1150), - [anon_sym___cdecl] = ACTIONS(1150), - [anon_sym___clrcall] = ACTIONS(1150), - [anon_sym___stdcall] = ACTIONS(1150), - [anon_sym___fastcall] = ACTIONS(1150), - [anon_sym___thiscall] = ACTIONS(1150), - [anon_sym___vectorcall] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym___inline] = ACTIONS(1150), - [anon_sym___inline__] = ACTIONS(1150), - [anon_sym___forceinline] = ACTIONS(1150), - [anon_sym_thread_local] = ACTIONS(1150), - [anon_sym___thread] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_constexpr] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym___restrict__] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym__Noreturn] = ACTIONS(1150), - [anon_sym_noreturn] = ACTIONS(1150), - [anon_sym__Nonnull] = ACTIONS(1150), - [anon_sym_alignas] = ACTIONS(1150), - [anon_sym__Alignas] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1150), - [anon_sym___leave] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [anon_sym___alignof__] = ACTIONS(1150), - [anon_sym___alignof] = ACTIONS(1150), - [anon_sym__alignof] = ACTIONS(1150), - [anon_sym_alignof] = ACTIONS(1150), - [anon_sym__Alignof] = ACTIONS(1150), - [anon_sym_offsetof] = ACTIONS(1150), - [anon_sym__Generic] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1150), - [anon_sym___asm__] = ACTIONS(1150), - [anon_sym___asm] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [anon_sym_NULL] = ACTIONS(1150), - [anon_sym_nullptr] = ACTIONS(1150), + [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___extension__] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym___inline] = ACTIONS(1218), + [anon_sym___inline__] = ACTIONS(1218), + [anon_sym___forceinline] = ACTIONS(1218), + [anon_sym_thread_local] = ACTIONS(1218), + [anon_sym___thread] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1218), + [anon_sym__Nonnull] = ACTIONS(1218), + [anon_sym_alignas] = ACTIONS(1218), + [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym___alignof__] = ACTIONS(1218), + [anon_sym___alignof] = ACTIONS(1218), + [anon_sym__alignof] = ACTIONS(1218), + [anon_sym_alignof] = ACTIONS(1218), + [anon_sym__Alignof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, [197] = { - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token2] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym___extension__] = ACTIONS(1158), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym___attribute] = ACTIONS(1158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(1158), - [anon_sym___cdecl] = ACTIONS(1158), - [anon_sym___clrcall] = ACTIONS(1158), - [anon_sym___stdcall] = ACTIONS(1158), - [anon_sym___fastcall] = ACTIONS(1158), - [anon_sym___thiscall] = ACTIONS(1158), - [anon_sym___vectorcall] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym___inline] = ACTIONS(1158), - [anon_sym___inline__] = ACTIONS(1158), - [anon_sym___forceinline] = ACTIONS(1158), - [anon_sym_thread_local] = ACTIONS(1158), - [anon_sym___thread] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_constexpr] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym___restrict__] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym__Noreturn] = ACTIONS(1158), - [anon_sym_noreturn] = ACTIONS(1158), - [anon_sym__Nonnull] = ACTIONS(1158), - [anon_sym_alignas] = ACTIONS(1158), - [anon_sym__Alignas] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym___try] = ACTIONS(1158), - [anon_sym___leave] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [anon_sym___alignof__] = ACTIONS(1158), - [anon_sym___alignof] = ACTIONS(1158), - [anon_sym__alignof] = ACTIONS(1158), - [anon_sym_alignof] = ACTIONS(1158), - [anon_sym__Alignof] = ACTIONS(1158), - [anon_sym_offsetof] = ACTIONS(1158), - [anon_sym__Generic] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1158), - [anon_sym___asm__] = ACTIONS(1158), - [anon_sym___asm] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [anon_sym_NULL] = ACTIONS(1158), - [anon_sym_nullptr] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token2] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym___attribute__] = ACTIONS(1222), + [anon_sym___attribute] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), + [anon_sym___declspec] = ACTIONS(1222), + [anon_sym___cdecl] = ACTIONS(1222), + [anon_sym___clrcall] = ACTIONS(1222), + [anon_sym___stdcall] = ACTIONS(1222), + [anon_sym___fastcall] = ACTIONS(1222), + [anon_sym___thiscall] = ACTIONS(1222), + [anon_sym___vectorcall] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym___inline] = ACTIONS(1222), + [anon_sym___inline__] = ACTIONS(1222), + [anon_sym___forceinline] = ACTIONS(1222), + [anon_sym_thread_local] = ACTIONS(1222), + [anon_sym___thread] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_constexpr] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym___restrict__] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym__Noreturn] = ACTIONS(1222), + [anon_sym_noreturn] = ACTIONS(1222), + [anon_sym__Nonnull] = ACTIONS(1222), + [anon_sym_alignas] = ACTIONS(1222), + [anon_sym__Alignas] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1222), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym___alignof__] = ACTIONS(1222), + [anon_sym___alignof] = ACTIONS(1222), + [anon_sym__alignof] = ACTIONS(1222), + [anon_sym_alignof] = ACTIONS(1222), + [anon_sym__Alignof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = ACTIONS(1222), + [anon_sym_asm] = ACTIONS(1222), + [anon_sym___asm__] = ACTIONS(1222), + [anon_sym___asm] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_L_SQUOTE] = ACTIONS(1224), + [anon_sym_u_SQUOTE] = ACTIONS(1224), + [anon_sym_U_SQUOTE] = ACTIONS(1224), + [anon_sym_u8_SQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_L_DQUOTE] = ACTIONS(1224), + [anon_sym_u_DQUOTE] = ACTIONS(1224), + [anon_sym_U_DQUOTE] = ACTIONS(1224), + [anon_sym_u8_DQUOTE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [anon_sym_NULL] = ACTIONS(1222), + [anon_sym_nullptr] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, [198] = { @@ -37354,7 +37318,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1162), [aux_sym_preproc_def_token1] = ACTIONS(1162), [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token2] = ACTIONS(1162), [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), [sym_preproc_directive] = ACTIONS(1162), @@ -37380,6 +37343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1162), [anon_sym___vectorcall] = ACTIONS(1162), [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), [anon_sym_signed] = ACTIONS(1162), [anon_sym_unsigned] = ACTIONS(1162), [anon_sym_long] = ACTIONS(1162), @@ -37453,1654 +37417,1551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [199] = { - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym___attribute] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym___declspec] = ACTIONS(1166), - [anon_sym___cdecl] = ACTIONS(1166), - [anon_sym___clrcall] = ACTIONS(1166), - [anon_sym___stdcall] = ACTIONS(1166), - [anon_sym___fastcall] = ACTIONS(1166), - [anon_sym___thiscall] = ACTIONS(1166), - [anon_sym___vectorcall] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym___inline] = ACTIONS(1166), - [anon_sym___inline__] = ACTIONS(1166), - [anon_sym___forceinline] = ACTIONS(1166), - [anon_sym_thread_local] = ACTIONS(1166), - [anon_sym___thread] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym___restrict__] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym__Noreturn] = ACTIONS(1166), - [anon_sym_noreturn] = ACTIONS(1166), - [anon_sym__Nonnull] = ACTIONS(1166), - [anon_sym_alignas] = ACTIONS(1166), - [anon_sym__Alignas] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_else] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym___try] = ACTIONS(1166), - [anon_sym___leave] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym___alignof__] = ACTIONS(1166), - [anon_sym___alignof] = ACTIONS(1166), - [anon_sym__alignof] = ACTIONS(1166), - [anon_sym_alignof] = ACTIONS(1166), - [anon_sym__Alignof] = ACTIONS(1166), - [anon_sym_offsetof] = ACTIONS(1166), - [anon_sym__Generic] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1166), - [anon_sym___asm__] = ACTIONS(1166), - [anon_sym___asm] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [anon_sym_NULL] = ACTIONS(1166), - [anon_sym_nullptr] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym___attribute] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [anon_sym__Nonnull] = ACTIONS(1258), + [anon_sym_alignas] = ACTIONS(1258), + [anon_sym__Alignas] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [anon_sym___asm] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(3), }, [200] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___attribute] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym__Nonnull] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [anon_sym___asm] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [sym_comment] = ACTIONS(3), + }, + [201] = { + [sym_identifier] = ACTIONS(1186), + [aux_sym_preproc_include_token1] = ACTIONS(1186), + [aux_sym_preproc_def_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token2] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym___extension__] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym___attribute__] = ACTIONS(1186), + [anon_sym___attribute] = ACTIONS(1186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), + [anon_sym___declspec] = ACTIONS(1186), + [anon_sym___cdecl] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1186), + [anon_sym___stdcall] = ACTIONS(1186), + [anon_sym___fastcall] = ACTIONS(1186), + [anon_sym___thiscall] = ACTIONS(1186), + [anon_sym___vectorcall] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym___inline] = ACTIONS(1186), + [anon_sym___inline__] = ACTIONS(1186), + [anon_sym___forceinline] = ACTIONS(1186), + [anon_sym_thread_local] = ACTIONS(1186), + [anon_sym___thread] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_constexpr] = ACTIONS(1186), + [anon_sym_volatile] = ACTIONS(1186), + [anon_sym_restrict] = ACTIONS(1186), + [anon_sym___restrict__] = ACTIONS(1186), + [anon_sym__Atomic] = ACTIONS(1186), + [anon_sym__Noreturn] = ACTIONS(1186), + [anon_sym_noreturn] = ACTIONS(1186), + [anon_sym__Nonnull] = ACTIONS(1186), + [anon_sym_alignas] = ACTIONS(1186), + [anon_sym__Alignas] = ACTIONS(1186), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym___try] = ACTIONS(1186), + [anon_sym___leave] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym___alignof__] = ACTIONS(1186), + [anon_sym___alignof] = ACTIONS(1186), + [anon_sym__alignof] = ACTIONS(1186), + [anon_sym_alignof] = ACTIONS(1186), + [anon_sym__Alignof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = ACTIONS(1186), + [anon_sym_asm] = ACTIONS(1186), + [anon_sym___asm__] = ACTIONS(1186), + [anon_sym___asm] = ACTIONS(1186), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(1188), + [anon_sym_u_SQUOTE] = ACTIONS(1188), + [anon_sym_U_SQUOTE] = ACTIONS(1188), + [anon_sym_u8_SQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_L_DQUOTE] = ACTIONS(1188), + [anon_sym_u_DQUOTE] = ACTIONS(1188), + [anon_sym_U_DQUOTE] = ACTIONS(1188), + [anon_sym_u8_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [anon_sym_NULL] = ACTIONS(1186), + [anon_sym_nullptr] = ACTIONS(1186), [sym_comment] = ACTIONS(3), }, [202] = { - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token2] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym___extension__] = ACTIONS(1178), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym___attribute] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), - [anon_sym___declspec] = ACTIONS(1178), - [anon_sym___cdecl] = ACTIONS(1178), - [anon_sym___clrcall] = ACTIONS(1178), - [anon_sym___stdcall] = ACTIONS(1178), - [anon_sym___fastcall] = ACTIONS(1178), - [anon_sym___thiscall] = ACTIONS(1178), - [anon_sym___vectorcall] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym___inline] = ACTIONS(1178), - [anon_sym___inline__] = ACTIONS(1178), - [anon_sym___forceinline] = ACTIONS(1178), - [anon_sym_thread_local] = ACTIONS(1178), - [anon_sym___thread] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_constexpr] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym___restrict__] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym__Noreturn] = ACTIONS(1178), - [anon_sym_noreturn] = ACTIONS(1178), - [anon_sym__Nonnull] = ACTIONS(1178), - [anon_sym_alignas] = ACTIONS(1178), - [anon_sym__Alignas] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym___try] = ACTIONS(1178), - [anon_sym___leave] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [anon_sym___alignof__] = ACTIONS(1178), - [anon_sym___alignof] = ACTIONS(1178), - [anon_sym__alignof] = ACTIONS(1178), - [anon_sym_alignof] = ACTIONS(1178), - [anon_sym__Alignof] = ACTIONS(1178), - [anon_sym_offsetof] = ACTIONS(1178), - [anon_sym__Generic] = ACTIONS(1178), - [anon_sym_asm] = ACTIONS(1178), - [anon_sym___asm__] = ACTIONS(1178), - [anon_sym___asm] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [anon_sym_NULL] = ACTIONS(1178), - [anon_sym_nullptr] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token2] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym___attribute] = ACTIONS(1146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), + [anon_sym___declspec] = ACTIONS(1146), + [anon_sym___cdecl] = ACTIONS(1146), + [anon_sym___clrcall] = ACTIONS(1146), + [anon_sym___stdcall] = ACTIONS(1146), + [anon_sym___fastcall] = ACTIONS(1146), + [anon_sym___thiscall] = ACTIONS(1146), + [anon_sym___vectorcall] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym___inline] = ACTIONS(1146), + [anon_sym___inline__] = ACTIONS(1146), + [anon_sym___forceinline] = ACTIONS(1146), + [anon_sym_thread_local] = ACTIONS(1146), + [anon_sym___thread] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_constexpr] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym___restrict__] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym__Noreturn] = ACTIONS(1146), + [anon_sym_noreturn] = ACTIONS(1146), + [anon_sym__Nonnull] = ACTIONS(1146), + [anon_sym_alignas] = ACTIONS(1146), + [anon_sym__Alignas] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1146), + [anon_sym___leave] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym___alignof__] = ACTIONS(1146), + [anon_sym___alignof] = ACTIONS(1146), + [anon_sym__alignof] = ACTIONS(1146), + [anon_sym_alignof] = ACTIONS(1146), + [anon_sym__Alignof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = ACTIONS(1146), + [anon_sym_asm] = ACTIONS(1146), + [anon_sym___asm__] = ACTIONS(1146), + [anon_sym___asm] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [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(1146), + [sym_false] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_nullptr] = ACTIONS(1146), [sym_comment] = ACTIONS(3), }, [203] = { - [sym_identifier] = ACTIONS(1182), - [aux_sym_preproc_include_token1] = ACTIONS(1182), - [aux_sym_preproc_def_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token2] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), - [sym_preproc_directive] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym___extension__] = ACTIONS(1182), - [anon_sym_typedef] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym___attribute__] = ACTIONS(1182), - [anon_sym___attribute] = ACTIONS(1182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), - [anon_sym___declspec] = ACTIONS(1182), - [anon_sym___cdecl] = ACTIONS(1182), - [anon_sym___clrcall] = ACTIONS(1182), - [anon_sym___stdcall] = ACTIONS(1182), - [anon_sym___fastcall] = ACTIONS(1182), - [anon_sym___thiscall] = ACTIONS(1182), - [anon_sym___vectorcall] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_signed] = ACTIONS(1182), - [anon_sym_unsigned] = ACTIONS(1182), - [anon_sym_long] = ACTIONS(1182), - [anon_sym_short] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_inline] = ACTIONS(1182), - [anon_sym___inline] = ACTIONS(1182), - [anon_sym___inline__] = ACTIONS(1182), - [anon_sym___forceinline] = ACTIONS(1182), - [anon_sym_thread_local] = ACTIONS(1182), - [anon_sym___thread] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_constexpr] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym___restrict__] = ACTIONS(1182), - [anon_sym__Atomic] = ACTIONS(1182), - [anon_sym__Noreturn] = ACTIONS(1182), - [anon_sym_noreturn] = ACTIONS(1182), - [anon_sym__Nonnull] = ACTIONS(1182), - [anon_sym_alignas] = ACTIONS(1182), - [anon_sym__Alignas] = ACTIONS(1182), - [sym_primitive_type] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1182), - [anon_sym___try] = ACTIONS(1182), - [anon_sym___leave] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_sizeof] = ACTIONS(1182), - [anon_sym___alignof__] = ACTIONS(1182), - [anon_sym___alignof] = ACTIONS(1182), - [anon_sym__alignof] = ACTIONS(1182), - [anon_sym_alignof] = ACTIONS(1182), - [anon_sym__Alignof] = ACTIONS(1182), - [anon_sym_offsetof] = ACTIONS(1182), - [anon_sym__Generic] = ACTIONS(1182), - [anon_sym_asm] = ACTIONS(1182), - [anon_sym___asm__] = ACTIONS(1182), - [anon_sym___asm] = ACTIONS(1182), - [sym_number_literal] = ACTIONS(1184), - [anon_sym_L_SQUOTE] = ACTIONS(1184), - [anon_sym_u_SQUOTE] = ACTIONS(1184), - [anon_sym_U_SQUOTE] = ACTIONS(1184), - [anon_sym_u8_SQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_L_DQUOTE] = ACTIONS(1184), - [anon_sym_u_DQUOTE] = ACTIONS(1184), - [anon_sym_U_DQUOTE] = ACTIONS(1184), - [anon_sym_u8_DQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_true] = ACTIONS(1182), - [sym_false] = ACTIONS(1182), - [anon_sym_NULL] = ACTIONS(1182), - [anon_sym_nullptr] = ACTIONS(1182), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token2] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym___attribute] = ACTIONS(1150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym___declspec] = ACTIONS(1150), + [anon_sym___cdecl] = ACTIONS(1150), + [anon_sym___clrcall] = ACTIONS(1150), + [anon_sym___stdcall] = ACTIONS(1150), + [anon_sym___fastcall] = ACTIONS(1150), + [anon_sym___thiscall] = ACTIONS(1150), + [anon_sym___vectorcall] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym___inline] = ACTIONS(1150), + [anon_sym___inline__] = ACTIONS(1150), + [anon_sym___forceinline] = ACTIONS(1150), + [anon_sym_thread_local] = ACTIONS(1150), + [anon_sym___thread] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_constexpr] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym___restrict__] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym__Noreturn] = ACTIONS(1150), + [anon_sym_noreturn] = ACTIONS(1150), + [anon_sym__Nonnull] = ACTIONS(1150), + [anon_sym_alignas] = ACTIONS(1150), + [anon_sym__Alignas] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1150), + [anon_sym___leave] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym___alignof__] = ACTIONS(1150), + [anon_sym___alignof] = ACTIONS(1150), + [anon_sym__alignof] = ACTIONS(1150), + [anon_sym_alignof] = ACTIONS(1150), + [anon_sym__Alignof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1150), + [anon_sym_asm] = ACTIONS(1150), + [anon_sym___asm__] = ACTIONS(1150), + [anon_sym___asm] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [anon_sym_NULL] = ACTIONS(1150), + [anon_sym_nullptr] = ACTIONS(1150), [sym_comment] = ACTIONS(3), }, [204] = { - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token2] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym___extension__] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym___attribute] = ACTIONS(1134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym___declspec] = ACTIONS(1134), - [anon_sym___cdecl] = ACTIONS(1134), - [anon_sym___clrcall] = ACTIONS(1134), - [anon_sym___stdcall] = ACTIONS(1134), - [anon_sym___fastcall] = ACTIONS(1134), - [anon_sym___thiscall] = ACTIONS(1134), - [anon_sym___vectorcall] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym___inline] = ACTIONS(1134), - [anon_sym___inline__] = ACTIONS(1134), - [anon_sym___forceinline] = ACTIONS(1134), - [anon_sym_thread_local] = ACTIONS(1134), - [anon_sym___thread] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_constexpr] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym___restrict__] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym__Noreturn] = ACTIONS(1134), - [anon_sym_noreturn] = ACTIONS(1134), - [anon_sym__Nonnull] = ACTIONS(1134), - [anon_sym_alignas] = ACTIONS(1134), - [anon_sym__Alignas] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_else] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym___try] = ACTIONS(1134), - [anon_sym___leave] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym___alignof__] = ACTIONS(1134), - [anon_sym___alignof] = ACTIONS(1134), - [anon_sym__alignof] = ACTIONS(1134), - [anon_sym_alignof] = ACTIONS(1134), - [anon_sym__Alignof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = ACTIONS(1134), - [anon_sym_asm] = ACTIONS(1134), - [anon_sym___asm__] = ACTIONS(1134), - [anon_sym___asm] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [anon_sym_NULL] = ACTIONS(1134), - [anon_sym_nullptr] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym___attribute] = ACTIONS(1166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym___declspec] = ACTIONS(1166), + [anon_sym___cdecl] = ACTIONS(1166), + [anon_sym___clrcall] = ACTIONS(1166), + [anon_sym___stdcall] = ACTIONS(1166), + [anon_sym___fastcall] = ACTIONS(1166), + [anon_sym___thiscall] = ACTIONS(1166), + [anon_sym___vectorcall] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___inline] = ACTIONS(1166), + [anon_sym___inline__] = ACTIONS(1166), + [anon_sym___forceinline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1166), + [anon_sym___thread] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_constexpr] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym___restrict__] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym__Noreturn] = ACTIONS(1166), + [anon_sym_noreturn] = ACTIONS(1166), + [anon_sym__Nonnull] = ACTIONS(1166), + [anon_sym_alignas] = ACTIONS(1166), + [anon_sym__Alignas] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1166), + [anon_sym___leave] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym___alignof__] = ACTIONS(1166), + [anon_sym___alignof] = ACTIONS(1166), + [anon_sym__alignof] = ACTIONS(1166), + [anon_sym_alignof] = ACTIONS(1166), + [anon_sym__Alignof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = ACTIONS(1166), + [anon_sym_asm] = ACTIONS(1166), + [anon_sym___asm__] = ACTIONS(1166), + [anon_sym___asm] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_NULL] = ACTIONS(1166), + [anon_sym_nullptr] = ACTIONS(1166), [sym_comment] = ACTIONS(3), }, [205] = { - [sym_identifier] = ACTIONS(1186), - [aux_sym_preproc_include_token1] = ACTIONS(1186), - [aux_sym_preproc_def_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token2] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), - [sym_preproc_directive] = ACTIONS(1186), - [anon_sym_LPAREN2] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym___extension__] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym___attribute__] = ACTIONS(1186), - [anon_sym___attribute] = ACTIONS(1186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), - [anon_sym___declspec] = ACTIONS(1186), - [anon_sym___cdecl] = ACTIONS(1186), - [anon_sym___clrcall] = ACTIONS(1186), - [anon_sym___stdcall] = ACTIONS(1186), - [anon_sym___fastcall] = ACTIONS(1186), - [anon_sym___thiscall] = ACTIONS(1186), - [anon_sym___vectorcall] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_auto] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_inline] = ACTIONS(1186), - [anon_sym___inline] = ACTIONS(1186), - [anon_sym___inline__] = ACTIONS(1186), - [anon_sym___forceinline] = ACTIONS(1186), - [anon_sym_thread_local] = ACTIONS(1186), - [anon_sym___thread] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_constexpr] = ACTIONS(1186), - [anon_sym_volatile] = ACTIONS(1186), - [anon_sym_restrict] = ACTIONS(1186), - [anon_sym___restrict__] = ACTIONS(1186), - [anon_sym__Atomic] = ACTIONS(1186), - [anon_sym__Noreturn] = ACTIONS(1186), - [anon_sym_noreturn] = ACTIONS(1186), - [anon_sym__Nonnull] = ACTIONS(1186), - [anon_sym_alignas] = ACTIONS(1186), - [anon_sym__Alignas] = ACTIONS(1186), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym___try] = ACTIONS(1186), - [anon_sym___leave] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_sizeof] = ACTIONS(1186), - [anon_sym___alignof__] = ACTIONS(1186), - [anon_sym___alignof] = ACTIONS(1186), - [anon_sym__alignof] = ACTIONS(1186), - [anon_sym_alignof] = ACTIONS(1186), - [anon_sym__Alignof] = ACTIONS(1186), - [anon_sym_offsetof] = ACTIONS(1186), - [anon_sym__Generic] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym___asm__] = ACTIONS(1186), - [anon_sym___asm] = ACTIONS(1186), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(1188), - [anon_sym_u_SQUOTE] = ACTIONS(1188), - [anon_sym_U_SQUOTE] = ACTIONS(1188), - [anon_sym_u8_SQUOTE] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_L_DQUOTE] = ACTIONS(1188), - [anon_sym_u_DQUOTE] = ACTIONS(1188), - [anon_sym_U_DQUOTE] = ACTIONS(1188), - [anon_sym_u8_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_true] = ACTIONS(1186), - [sym_false] = ACTIONS(1186), - [anon_sym_NULL] = ACTIONS(1186), - [anon_sym_nullptr] = ACTIONS(1186), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___attribute] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym__Nonnull] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [anon_sym___asm] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(3), }, [206] = { - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token2] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym___extension__] = ACTIONS(1190), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym___attribute] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym___inline] = ACTIONS(1190), - [anon_sym___inline__] = ACTIONS(1190), - [anon_sym___forceinline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym___thread] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym__Nonnull] = ACTIONS(1190), - [anon_sym_alignas] = ACTIONS(1190), - [anon_sym__Alignas] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym___alignof__] = ACTIONS(1190), - [anon_sym___alignof] = ACTIONS(1190), - [anon_sym__alignof] = ACTIONS(1190), - [anon_sym_alignof] = ACTIONS(1190), - [anon_sym__Alignof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [anon_sym___asm] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1182), + [aux_sym_preproc_include_token1] = ACTIONS(1182), + [aux_sym_preproc_def_token1] = ACTIONS(1182), + [aux_sym_preproc_if_token1] = ACTIONS(1182), + [aux_sym_preproc_if_token2] = ACTIONS(1182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [sym_preproc_directive] = ACTIONS(1182), + [anon_sym_LPAREN2] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym___extension__] = ACTIONS(1182), + [anon_sym_typedef] = ACTIONS(1182), + [anon_sym_extern] = ACTIONS(1182), + [anon_sym___attribute__] = ACTIONS(1182), + [anon_sym___attribute] = ACTIONS(1182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), + [anon_sym___declspec] = ACTIONS(1182), + [anon_sym___cdecl] = ACTIONS(1182), + [anon_sym___clrcall] = ACTIONS(1182), + [anon_sym___stdcall] = ACTIONS(1182), + [anon_sym___fastcall] = ACTIONS(1182), + [anon_sym___thiscall] = ACTIONS(1182), + [anon_sym___vectorcall] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_signed] = ACTIONS(1182), + [anon_sym_unsigned] = ACTIONS(1182), + [anon_sym_long] = ACTIONS(1182), + [anon_sym_short] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1182), + [anon_sym_auto] = ACTIONS(1182), + [anon_sym_register] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym___inline] = ACTIONS(1182), + [anon_sym___inline__] = ACTIONS(1182), + [anon_sym___forceinline] = ACTIONS(1182), + [anon_sym_thread_local] = ACTIONS(1182), + [anon_sym___thread] = ACTIONS(1182), + [anon_sym_const] = ACTIONS(1182), + [anon_sym_constexpr] = ACTIONS(1182), + [anon_sym_volatile] = ACTIONS(1182), + [anon_sym_restrict] = ACTIONS(1182), + [anon_sym___restrict__] = ACTIONS(1182), + [anon_sym__Atomic] = ACTIONS(1182), + [anon_sym__Noreturn] = ACTIONS(1182), + [anon_sym_noreturn] = ACTIONS(1182), + [anon_sym__Nonnull] = ACTIONS(1182), + [anon_sym_alignas] = ACTIONS(1182), + [anon_sym__Alignas] = ACTIONS(1182), + [sym_primitive_type] = ACTIONS(1182), + [anon_sym_enum] = ACTIONS(1182), + [anon_sym_struct] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(1182), + [anon_sym_if] = ACTIONS(1182), + [anon_sym_else] = ACTIONS(1182), + [anon_sym_switch] = ACTIONS(1182), + [anon_sym_case] = ACTIONS(1182), + [anon_sym_default] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_do] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_goto] = ACTIONS(1182), + [anon_sym___try] = ACTIONS(1182), + [anon_sym___leave] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_sizeof] = ACTIONS(1182), + [anon_sym___alignof__] = ACTIONS(1182), + [anon_sym___alignof] = ACTIONS(1182), + [anon_sym__alignof] = ACTIONS(1182), + [anon_sym_alignof] = ACTIONS(1182), + [anon_sym__Alignof] = ACTIONS(1182), + [anon_sym_offsetof] = ACTIONS(1182), + [anon_sym__Generic] = ACTIONS(1182), + [anon_sym_asm] = ACTIONS(1182), + [anon_sym___asm__] = ACTIONS(1182), + [anon_sym___asm] = ACTIONS(1182), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_L_SQUOTE] = ACTIONS(1184), + [anon_sym_u_SQUOTE] = ACTIONS(1184), + [anon_sym_U_SQUOTE] = ACTIONS(1184), + [anon_sym_u8_SQUOTE] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_L_DQUOTE] = ACTIONS(1184), + [anon_sym_u_DQUOTE] = ACTIONS(1184), + [anon_sym_U_DQUOTE] = ACTIONS(1184), + [anon_sym_u8_DQUOTE] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_true] = ACTIONS(1182), + [sym_false] = ACTIONS(1182), + [anon_sym_NULL] = ACTIONS(1182), + [anon_sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), }, [207] = { - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym___extension__] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym___attribute] = ACTIONS(1134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym___declspec] = ACTIONS(1134), - [anon_sym___cdecl] = ACTIONS(1134), - [anon_sym___clrcall] = ACTIONS(1134), - [anon_sym___stdcall] = ACTIONS(1134), - [anon_sym___fastcall] = ACTIONS(1134), - [anon_sym___thiscall] = ACTIONS(1134), - [anon_sym___vectorcall] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym___inline] = ACTIONS(1134), - [anon_sym___inline__] = ACTIONS(1134), - [anon_sym___forceinline] = ACTIONS(1134), - [anon_sym_thread_local] = ACTIONS(1134), - [anon_sym___thread] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_constexpr] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym___restrict__] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym__Noreturn] = ACTIONS(1134), - [anon_sym_noreturn] = ACTIONS(1134), - [anon_sym__Nonnull] = ACTIONS(1134), - [anon_sym_alignas] = ACTIONS(1134), - [anon_sym__Alignas] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_else] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym___try] = ACTIONS(1134), - [anon_sym___leave] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym___alignof__] = ACTIONS(1134), - [anon_sym___alignof] = ACTIONS(1134), - [anon_sym__alignof] = ACTIONS(1134), - [anon_sym_alignof] = ACTIONS(1134), - [anon_sym__Alignof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = ACTIONS(1134), - [anon_sym_asm] = ACTIONS(1134), - [anon_sym___asm__] = ACTIONS(1134), - [anon_sym___asm] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [anon_sym_NULL] = ACTIONS(1134), - [anon_sym_nullptr] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token2] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym___attribute] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [anon_sym__Nonnull] = ACTIONS(1198), + [anon_sym_alignas] = ACTIONS(1198), + [anon_sym__Alignas] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [anon_sym___asm] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), [sym_comment] = ACTIONS(3), }, [208] = { - [sym_identifier] = ACTIONS(1206), - [aux_sym_preproc_include_token1] = ACTIONS(1206), - [aux_sym_preproc_def_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token2] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym___attribute__] = ACTIONS(1206), - [anon_sym___attribute] = ACTIONS(1206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), - [anon_sym___declspec] = ACTIONS(1206), - [anon_sym___cdecl] = ACTIONS(1206), - [anon_sym___clrcall] = ACTIONS(1206), - [anon_sym___stdcall] = ACTIONS(1206), - [anon_sym___fastcall] = ACTIONS(1206), - [anon_sym___thiscall] = ACTIONS(1206), - [anon_sym___vectorcall] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1206), - [anon_sym_unsigned] = ACTIONS(1206), - [anon_sym_long] = ACTIONS(1206), - [anon_sym_short] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym___inline] = ACTIONS(1206), - [anon_sym___inline__] = ACTIONS(1206), - [anon_sym___forceinline] = ACTIONS(1206), - [anon_sym_thread_local] = ACTIONS(1206), - [anon_sym___thread] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_constexpr] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym___restrict__] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym__Noreturn] = ACTIONS(1206), - [anon_sym_noreturn] = ACTIONS(1206), - [anon_sym__Nonnull] = ACTIONS(1206), - [anon_sym_alignas] = ACTIONS(1206), - [anon_sym__Alignas] = ACTIONS(1206), - [sym_primitive_type] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_goto] = ACTIONS(1206), - [anon_sym___try] = ACTIONS(1206), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1206), - [anon_sym___alignof__] = ACTIONS(1206), - [anon_sym___alignof] = ACTIONS(1206), - [anon_sym__alignof] = ACTIONS(1206), - [anon_sym_alignof] = ACTIONS(1206), - [anon_sym__Alignof] = ACTIONS(1206), - [anon_sym_offsetof] = ACTIONS(1206), - [anon_sym__Generic] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1206), - [anon_sym___asm__] = ACTIONS(1206), - [anon_sym___asm] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_L_SQUOTE] = ACTIONS(1208), - [anon_sym_u_SQUOTE] = ACTIONS(1208), - [anon_sym_U_SQUOTE] = ACTIONS(1208), - [anon_sym_u8_SQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_L_DQUOTE] = ACTIONS(1208), - [anon_sym_u_DQUOTE] = ACTIONS(1208), - [anon_sym_U_DQUOTE] = ACTIONS(1208), - [anon_sym_u8_DQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [anon_sym_NULL] = ACTIONS(1206), - [anon_sym_nullptr] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_include_token1] = ACTIONS(1210), - [aux_sym_preproc_def_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token2] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym___extension__] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym___attribute__] = ACTIONS(1210), - [anon_sym___attribute] = ACTIONS(1210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), - [anon_sym___declspec] = ACTIONS(1210), - [anon_sym___cdecl] = ACTIONS(1210), - [anon_sym___clrcall] = ACTIONS(1210), - [anon_sym___stdcall] = ACTIONS(1210), - [anon_sym___fastcall] = ACTIONS(1210), - [anon_sym___thiscall] = ACTIONS(1210), - [anon_sym___vectorcall] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_inline] = ACTIONS(1210), - [anon_sym___inline] = ACTIONS(1210), - [anon_sym___inline__] = ACTIONS(1210), - [anon_sym___forceinline] = ACTIONS(1210), - [anon_sym_thread_local] = ACTIONS(1210), - [anon_sym___thread] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_constexpr] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym___restrict__] = ACTIONS(1210), - [anon_sym__Atomic] = ACTIONS(1210), - [anon_sym__Noreturn] = ACTIONS(1210), - [anon_sym_noreturn] = ACTIONS(1210), - [anon_sym__Nonnull] = ACTIONS(1210), - [anon_sym_alignas] = ACTIONS(1210), - [anon_sym__Alignas] = ACTIONS(1210), - [sym_primitive_type] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym___try] = ACTIONS(1210), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym___alignof__] = ACTIONS(1210), - [anon_sym___alignof] = ACTIONS(1210), - [anon_sym__alignof] = ACTIONS(1210), - [anon_sym_alignof] = ACTIONS(1210), - [anon_sym__Alignof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1210), - [anon_sym__Generic] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1210), - [anon_sym___asm__] = ACTIONS(1210), - [anon_sym___asm] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_L_SQUOTE] = ACTIONS(1212), - [anon_sym_u_SQUOTE] = ACTIONS(1212), - [anon_sym_U_SQUOTE] = ACTIONS(1212), - [anon_sym_u8_SQUOTE] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [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(1210), - [sym_false] = ACTIONS(1210), - [anon_sym_NULL] = ACTIONS(1210), - [anon_sym_nullptr] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token2] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym___attribute] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [anon_sym__Nonnull] = ACTIONS(1202), + [anon_sym_alignas] = ACTIONS(1202), + [anon_sym__Alignas] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [anon_sym___asm] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + }, + [209] = { + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token2] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym___attribute] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [anon_sym__Nonnull] = ACTIONS(1202), + [anon_sym_alignas] = ACTIONS(1202), + [anon_sym__Alignas] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [anon_sym___asm] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), [sym_comment] = ACTIONS(3), }, [210] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym___attribute] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [anon_sym__Nonnull] = ACTIONS(1234), + [anon_sym_alignas] = ACTIONS(1234), + [anon_sym__Alignas] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [anon_sym___asm] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [211] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym___attribute] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [anon_sym__Nonnull] = ACTIONS(1234), + [anon_sym_alignas] = ACTIONS(1234), + [anon_sym__Alignas] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [anon_sym___asm] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [212] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token2] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym___attribute] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [anon_sym__Nonnull] = ACTIONS(1238), + [anon_sym_alignas] = ACTIONS(1238), + [anon_sym__Alignas] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [anon_sym___asm] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token2] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym___attribute] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [anon_sym__Nonnull] = ACTIONS(1238), + [anon_sym_alignas] = ACTIONS(1238), + [anon_sym__Alignas] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [anon_sym___asm] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [215] = { + [214] = { [sym_identifier] = ACTIONS(1174), [aux_sym_preproc_include_token1] = ACTIONS(1174), [aux_sym_preproc_def_token1] = ACTIONS(1174), @@ -39203,115 +39064,526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1174), [sym_comment] = ACTIONS(3), }, + [215] = { + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym___attribute] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [anon_sym__Nonnull] = ACTIONS(1178), + [anon_sym_alignas] = ACTIONS(1178), + [anon_sym__Alignas] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [anon_sym___asm] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + }, [216] = { - [sym_identifier] = ACTIONS(1198), - [aux_sym_preproc_include_token1] = ACTIONS(1198), - [aux_sym_preproc_def_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token2] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1198), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym___extension__] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym___attribute__] = ACTIONS(1198), - [anon_sym___attribute] = ACTIONS(1198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), - [anon_sym___declspec] = ACTIONS(1198), - [anon_sym___cdecl] = ACTIONS(1198), - [anon_sym___clrcall] = ACTIONS(1198), - [anon_sym___stdcall] = ACTIONS(1198), - [anon_sym___fastcall] = ACTIONS(1198), - [anon_sym___thiscall] = ACTIONS(1198), - [anon_sym___vectorcall] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_inline] = ACTIONS(1198), - [anon_sym___inline] = ACTIONS(1198), - [anon_sym___inline__] = ACTIONS(1198), - [anon_sym___forceinline] = ACTIONS(1198), - [anon_sym_thread_local] = ACTIONS(1198), - [anon_sym___thread] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_constexpr] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym___restrict__] = ACTIONS(1198), - [anon_sym__Atomic] = ACTIONS(1198), - [anon_sym__Noreturn] = ACTIONS(1198), - [anon_sym_noreturn] = ACTIONS(1198), - [anon_sym__Nonnull] = ACTIONS(1198), - [anon_sym_alignas] = ACTIONS(1198), - [anon_sym__Alignas] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_goto] = ACTIONS(1198), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1198), - [anon_sym___alignof__] = ACTIONS(1198), - [anon_sym___alignof] = ACTIONS(1198), - [anon_sym__alignof] = ACTIONS(1198), - [anon_sym_alignof] = ACTIONS(1198), - [anon_sym__Alignof] = ACTIONS(1198), - [anon_sym_offsetof] = ACTIONS(1198), - [anon_sym__Generic] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1198), - [anon_sym___asm__] = ACTIONS(1198), - [anon_sym___asm] = ACTIONS(1198), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_L_SQUOTE] = ACTIONS(1200), - [anon_sym_u_SQUOTE] = ACTIONS(1200), - [anon_sym_U_SQUOTE] = ACTIONS(1200), - [anon_sym_u8_SQUOTE] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_L_DQUOTE] = ACTIONS(1200), - [anon_sym_u_DQUOTE] = ACTIONS(1200), - [anon_sym_U_DQUOTE] = ACTIONS(1200), - [anon_sym_u8_DQUOTE] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_true] = ACTIONS(1198), - [sym_false] = ACTIONS(1198), - [anon_sym_NULL] = ACTIONS(1198), - [anon_sym_nullptr] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym___attribute] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [anon_sym__Nonnull] = ACTIONS(1178), + [anon_sym_alignas] = ACTIONS(1178), + [anon_sym__Alignas] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [anon_sym___asm] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + }, + [217] = { + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token2] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym___attribute__] = ACTIONS(1206), + [anon_sym___attribute] = ACTIONS(1206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), + [anon_sym___declspec] = ACTIONS(1206), + [anon_sym___cdecl] = ACTIONS(1206), + [anon_sym___clrcall] = ACTIONS(1206), + [anon_sym___stdcall] = ACTIONS(1206), + [anon_sym___fastcall] = ACTIONS(1206), + [anon_sym___thiscall] = ACTIONS(1206), + [anon_sym___vectorcall] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym___inline] = ACTIONS(1206), + [anon_sym___inline__] = ACTIONS(1206), + [anon_sym___forceinline] = ACTIONS(1206), + [anon_sym_thread_local] = ACTIONS(1206), + [anon_sym___thread] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_constexpr] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_restrict] = ACTIONS(1206), + [anon_sym___restrict__] = ACTIONS(1206), + [anon_sym__Atomic] = ACTIONS(1206), + [anon_sym__Noreturn] = ACTIONS(1206), + [anon_sym_noreturn] = ACTIONS(1206), + [anon_sym__Nonnull] = ACTIONS(1206), + [anon_sym_alignas] = ACTIONS(1206), + [anon_sym__Alignas] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_goto] = ACTIONS(1206), + [anon_sym___try] = ACTIONS(1206), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym___alignof__] = ACTIONS(1206), + [anon_sym___alignof] = ACTIONS(1206), + [anon_sym__alignof] = ACTIONS(1206), + [anon_sym_alignof] = ACTIONS(1206), + [anon_sym__Alignof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = ACTIONS(1206), + [anon_sym_asm] = ACTIONS(1206), + [anon_sym___asm__] = ACTIONS(1206), + [anon_sym___asm] = ACTIONS(1206), + [sym_number_literal] = ACTIONS(1208), + [anon_sym_L_SQUOTE] = ACTIONS(1208), + [anon_sym_u_SQUOTE] = ACTIONS(1208), + [anon_sym_U_SQUOTE] = ACTIONS(1208), + [anon_sym_u8_SQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_L_DQUOTE] = ACTIONS(1208), + [anon_sym_u_DQUOTE] = ACTIONS(1208), + [anon_sym_U_DQUOTE] = ACTIONS(1208), + [anon_sym_u8_DQUOTE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [anon_sym_NULL] = ACTIONS(1206), + [anon_sym_nullptr] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym___attribute] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym___inline] = ACTIONS(1190), + [anon_sym___inline__] = ACTIONS(1190), + [anon_sym___forceinline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym___thread] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym__Nonnull] = ACTIONS(1190), + [anon_sym_alignas] = ACTIONS(1190), + [anon_sym__Alignas] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym___alignof__] = ACTIONS(1190), + [anon_sym___alignof] = ACTIONS(1190), + [anon_sym__alignof] = ACTIONS(1190), + [anon_sym_alignof] = ACTIONS(1190), + [anon_sym__Alignof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [anon_sym___asm] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [217] = { + [219] = { + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym___attribute] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [anon_sym__Nonnull] = ACTIONS(1194), + [anon_sym_alignas] = ACTIONS(1194), + [anon_sym__Alignas] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [anon_sym___asm] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + }, + [220] = { [sym_identifier] = ACTIONS(1202), [aux_sym_preproc_include_token1] = ACTIONS(1202), [aux_sym_preproc_def_token1] = ACTIONS(1202), [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token2] = ACTIONS(1202), [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), [sym_preproc_directive] = ACTIONS(1202), @@ -39337,6 +39609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1202), [anon_sym___vectorcall] = ACTIONS(1202), [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), [anon_sym_signed] = ACTIONS(1202), [anon_sym_unsigned] = ACTIONS(1202), [anon_sym_long] = ACTIONS(1202), @@ -39409,12 +39682,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1202), [sym_comment] = ACTIONS(3), }, - [218] = { + [221] = { [sym_identifier] = ACTIONS(1202), [aux_sym_preproc_include_token1] = ACTIONS(1202), [aux_sym_preproc_def_token1] = ACTIONS(1202), [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token2] = ACTIONS(1202), [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), [sym_preproc_directive] = ACTIONS(1202), @@ -39440,6 +39712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1202), [anon_sym___vectorcall] = ACTIONS(1202), [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), [anon_sym_signed] = ACTIONS(1202), [anon_sym_unsigned] = ACTIONS(1202), [anon_sym_long] = ACTIONS(1202), @@ -39487,1371 +39760,1474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1202), [anon_sym___alignof__] = ACTIONS(1202), [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(1214), - [aux_sym_preproc_include_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token2] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [anon_sym___attribute] = ACTIONS(1214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), - [anon_sym___declspec] = ACTIONS(1214), - [anon_sym___cdecl] = ACTIONS(1214), - [anon_sym___clrcall] = ACTIONS(1214), - [anon_sym___stdcall] = ACTIONS(1214), - [anon_sym___fastcall] = ACTIONS(1214), - [anon_sym___thiscall] = ACTIONS(1214), - [anon_sym___vectorcall] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___inline] = ACTIONS(1214), - [anon_sym___inline__] = ACTIONS(1214), - [anon_sym___forceinline] = ACTIONS(1214), - [anon_sym_thread_local] = ACTIONS(1214), - [anon_sym___thread] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_constexpr] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym___restrict__] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym__Noreturn] = ACTIONS(1214), - [anon_sym_noreturn] = ACTIONS(1214), - [anon_sym__Nonnull] = ACTIONS(1214), - [anon_sym_alignas] = ACTIONS(1214), - [anon_sym__Alignas] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym___try] = ACTIONS(1214), - [anon_sym___leave] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_sizeof] = ACTIONS(1214), - [anon_sym___alignof__] = ACTIONS(1214), - [anon_sym___alignof] = ACTIONS(1214), - [anon_sym__alignof] = ACTIONS(1214), - [anon_sym_alignof] = ACTIONS(1214), - [anon_sym__Alignof] = ACTIONS(1214), - [anon_sym_offsetof] = ACTIONS(1214), - [anon_sym__Generic] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1214), - [anon_sym___asm__] = ACTIONS(1214), - [anon_sym___asm] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1216), - [anon_sym_L_SQUOTE] = ACTIONS(1216), - [anon_sym_u_SQUOTE] = ACTIONS(1216), - [anon_sym_U_SQUOTE] = ACTIONS(1216), - [anon_sym_u8_SQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_L_DQUOTE] = ACTIONS(1216), - [anon_sym_u_DQUOTE] = ACTIONS(1216), - [anon_sym_U_DQUOTE] = ACTIONS(1216), - [anon_sym_u8_DQUOTE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [anon_sym_NULL] = ACTIONS(1214), - [anon_sym_nullptr] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1254), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___attribute] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym__Nonnull] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [anon_sym___asm] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym___extension__] = ACTIONS(1158), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym___attribute] = ACTIONS(1158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(1158), - [anon_sym___cdecl] = ACTIONS(1158), - [anon_sym___clrcall] = ACTIONS(1158), - [anon_sym___stdcall] = ACTIONS(1158), - [anon_sym___fastcall] = ACTIONS(1158), - [anon_sym___thiscall] = ACTIONS(1158), - [anon_sym___vectorcall] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym___inline] = ACTIONS(1158), - [anon_sym___inline__] = ACTIONS(1158), - [anon_sym___forceinline] = ACTIONS(1158), - [anon_sym_thread_local] = ACTIONS(1158), - [anon_sym___thread] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_constexpr] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym___restrict__] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym__Noreturn] = ACTIONS(1158), - [anon_sym_noreturn] = ACTIONS(1158), - [anon_sym__Nonnull] = ACTIONS(1158), - [anon_sym_alignas] = ACTIONS(1158), - [anon_sym__Alignas] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym___try] = ACTIONS(1158), - [anon_sym___leave] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [anon_sym___alignof__] = ACTIONS(1158), - [anon_sym___alignof] = ACTIONS(1158), - [anon_sym__alignof] = ACTIONS(1158), - [anon_sym_alignof] = ACTIONS(1158), - [anon_sym__Alignof] = ACTIONS(1158), - [anon_sym_offsetof] = ACTIONS(1158), - [anon_sym__Generic] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1158), - [anon_sym___asm__] = ACTIONS(1158), - [anon_sym___asm] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [anon_sym_NULL] = ACTIONS(1158), - [anon_sym_nullptr] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [anon_sym___asm] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), [sym_comment] = ACTIONS(3), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym___extension__] = ACTIONS(1162), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym___attribute] = ACTIONS(1162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), - [anon_sym___declspec] = ACTIONS(1162), - [anon_sym___cdecl] = ACTIONS(1162), - [anon_sym___clrcall] = ACTIONS(1162), - [anon_sym___stdcall] = ACTIONS(1162), - [anon_sym___fastcall] = ACTIONS(1162), - [anon_sym___thiscall] = ACTIONS(1162), - [anon_sym___vectorcall] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym___inline] = ACTIONS(1162), - [anon_sym___inline__] = ACTIONS(1162), - [anon_sym___forceinline] = ACTIONS(1162), - [anon_sym_thread_local] = ACTIONS(1162), - [anon_sym___thread] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_constexpr] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym___restrict__] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym__Noreturn] = ACTIONS(1162), - [anon_sym_noreturn] = ACTIONS(1162), - [anon_sym__Nonnull] = ACTIONS(1162), - [anon_sym_alignas] = ACTIONS(1162), - [anon_sym__Alignas] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_else] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym___try] = ACTIONS(1162), - [anon_sym___leave] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [anon_sym___alignof__] = ACTIONS(1162), - [anon_sym___alignof] = ACTIONS(1162), - [anon_sym__alignof] = ACTIONS(1162), - [anon_sym_alignof] = ACTIONS(1162), - [anon_sym__Alignof] = ACTIONS(1162), - [anon_sym_offsetof] = ACTIONS(1162), - [anon_sym__Generic] = ACTIONS(1162), - [anon_sym_asm] = ACTIONS(1162), - [anon_sym___asm__] = ACTIONS(1162), - [anon_sym___asm] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [anon_sym_NULL] = ACTIONS(1162), - [anon_sym_nullptr] = ACTIONS(1162), + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(1210), + [aux_sym_preproc_def_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), + [sym_preproc_directive] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym___attribute__] = ACTIONS(1210), + [anon_sym___attribute] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), + [anon_sym___declspec] = ACTIONS(1210), + [anon_sym___cdecl] = ACTIONS(1210), + [anon_sym___clrcall] = ACTIONS(1210), + [anon_sym___stdcall] = ACTIONS(1210), + [anon_sym___fastcall] = ACTIONS(1210), + [anon_sym___thiscall] = ACTIONS(1210), + [anon_sym___vectorcall] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym___inline] = ACTIONS(1210), + [anon_sym___inline__] = ACTIONS(1210), + [anon_sym___forceinline] = ACTIONS(1210), + [anon_sym_thread_local] = ACTIONS(1210), + [anon_sym___thread] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_constexpr] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_restrict] = ACTIONS(1210), + [anon_sym___restrict__] = ACTIONS(1210), + [anon_sym__Atomic] = ACTIONS(1210), + [anon_sym__Noreturn] = ACTIONS(1210), + [anon_sym_noreturn] = ACTIONS(1210), + [anon_sym__Nonnull] = ACTIONS(1210), + [anon_sym_alignas] = ACTIONS(1210), + [anon_sym__Alignas] = ACTIONS(1210), + [sym_primitive_type] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_goto] = ACTIONS(1210), + [anon_sym___try] = ACTIONS(1210), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym___alignof__] = ACTIONS(1210), + [anon_sym___alignof] = ACTIONS(1210), + [anon_sym__alignof] = ACTIONS(1210), + [anon_sym_alignof] = ACTIONS(1210), + [anon_sym__Alignof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [anon_sym___asm] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [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(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, [223] = { - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym___attribute] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym___declspec] = ACTIONS(1166), - [anon_sym___cdecl] = ACTIONS(1166), - [anon_sym___clrcall] = ACTIONS(1166), - [anon_sym___stdcall] = ACTIONS(1166), - [anon_sym___fastcall] = ACTIONS(1166), - [anon_sym___thiscall] = ACTIONS(1166), - [anon_sym___vectorcall] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym___inline] = ACTIONS(1166), - [anon_sym___inline__] = ACTIONS(1166), - [anon_sym___forceinline] = ACTIONS(1166), - [anon_sym_thread_local] = ACTIONS(1166), - [anon_sym___thread] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym___restrict__] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym__Noreturn] = ACTIONS(1166), - [anon_sym_noreturn] = ACTIONS(1166), - [anon_sym__Nonnull] = ACTIONS(1166), - [anon_sym_alignas] = ACTIONS(1166), - [anon_sym__Alignas] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_else] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym___try] = ACTIONS(1166), - [anon_sym___leave] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym___alignof__] = ACTIONS(1166), - [anon_sym___alignof] = ACTIONS(1166), - [anon_sym__alignof] = ACTIONS(1166), - [anon_sym_alignof] = ACTIONS(1166), - [anon_sym__Alignof] = ACTIONS(1166), - [anon_sym_offsetof] = ACTIONS(1166), - [anon_sym__Generic] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1166), - [anon_sym___asm__] = ACTIONS(1166), - [anon_sym___asm] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [anon_sym_NULL] = ACTIONS(1166), - [anon_sym_nullptr] = ACTIONS(1166), + [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___extension__] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym___inline] = ACTIONS(1218), + [anon_sym___inline__] = ACTIONS(1218), + [anon_sym___forceinline] = ACTIONS(1218), + [anon_sym_thread_local] = ACTIONS(1218), + [anon_sym___thread] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1218), + [anon_sym__Nonnull] = ACTIONS(1218), + [anon_sym_alignas] = ACTIONS(1218), + [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym___alignof__] = ACTIONS(1218), + [anon_sym___alignof] = ACTIONS(1218), + [anon_sym__alignof] = ACTIONS(1218), + [anon_sym_alignof] = ACTIONS(1218), + [anon_sym__Alignof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym___attribute__] = ACTIONS(1222), + [anon_sym___attribute] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), + [anon_sym___declspec] = ACTIONS(1222), + [anon_sym___cdecl] = ACTIONS(1222), + [anon_sym___clrcall] = ACTIONS(1222), + [anon_sym___stdcall] = ACTIONS(1222), + [anon_sym___fastcall] = ACTIONS(1222), + [anon_sym___thiscall] = ACTIONS(1222), + [anon_sym___vectorcall] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym___inline] = ACTIONS(1222), + [anon_sym___inline__] = ACTIONS(1222), + [anon_sym___forceinline] = ACTIONS(1222), + [anon_sym_thread_local] = ACTIONS(1222), + [anon_sym___thread] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_constexpr] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym___restrict__] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym__Noreturn] = ACTIONS(1222), + [anon_sym_noreturn] = ACTIONS(1222), + [anon_sym__Nonnull] = ACTIONS(1222), + [anon_sym_alignas] = ACTIONS(1222), + [anon_sym__Alignas] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1222), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym___alignof__] = ACTIONS(1222), + [anon_sym___alignof] = ACTIONS(1222), + [anon_sym__alignof] = ACTIONS(1222), + [anon_sym_alignof] = ACTIONS(1222), + [anon_sym__Alignof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = ACTIONS(1222), + [anon_sym_asm] = ACTIONS(1222), + [anon_sym___asm__] = ACTIONS(1222), + [anon_sym___asm] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_L_SQUOTE] = ACTIONS(1224), + [anon_sym_u_SQUOTE] = ACTIONS(1224), + [anon_sym_U_SQUOTE] = ACTIONS(1224), + [anon_sym_u8_SQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_L_DQUOTE] = ACTIONS(1224), + [anon_sym_u_DQUOTE] = ACTIONS(1224), + [anon_sym_U_DQUOTE] = ACTIONS(1224), + [anon_sym_u8_DQUOTE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [anon_sym_NULL] = ACTIONS(1222), + [anon_sym_nullptr] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym___extension__] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym___attribute] = ACTIONS(1138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym___declspec] = ACTIONS(1138), - [anon_sym___cdecl] = ACTIONS(1138), - [anon_sym___clrcall] = ACTIONS(1138), - [anon_sym___stdcall] = ACTIONS(1138), - [anon_sym___fastcall] = ACTIONS(1138), - [anon_sym___thiscall] = ACTIONS(1138), - [anon_sym___vectorcall] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym___inline] = ACTIONS(1138), - [anon_sym___inline__] = ACTIONS(1138), - [anon_sym___forceinline] = ACTIONS(1138), - [anon_sym_thread_local] = ACTIONS(1138), - [anon_sym___thread] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_constexpr] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym___restrict__] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym__Noreturn] = ACTIONS(1138), - [anon_sym_noreturn] = ACTIONS(1138), - [anon_sym__Nonnull] = ACTIONS(1138), - [anon_sym_alignas] = ACTIONS(1138), - [anon_sym__Alignas] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym___alignof__] = ACTIONS(1138), - [anon_sym___alignof] = ACTIONS(1138), - [anon_sym__alignof] = ACTIONS(1138), - [anon_sym_alignof] = ACTIONS(1138), - [anon_sym__Alignof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1138), - [anon_sym___asm__] = ACTIONS(1138), - [anon_sym___asm] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [anon_sym_NULL] = ACTIONS(1138), - [anon_sym_nullptr] = ACTIONS(1138), + [225] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym___attribute] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [anon_sym__Nonnull] = ACTIONS(1202), + [anon_sym_alignas] = ACTIONS(1202), + [anon_sym__Alignas] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [anon_sym___asm] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), [sym_comment] = ACTIONS(3), }, - [225] = { - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym___extension__] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym___attribute] = ACTIONS(1142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym___declspec] = ACTIONS(1142), - [anon_sym___cdecl] = ACTIONS(1142), - [anon_sym___clrcall] = ACTIONS(1142), - [anon_sym___stdcall] = ACTIONS(1142), - [anon_sym___fastcall] = ACTIONS(1142), - [anon_sym___thiscall] = ACTIONS(1142), - [anon_sym___vectorcall] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym___inline] = ACTIONS(1142), - [anon_sym___inline__] = ACTIONS(1142), - [anon_sym___forceinline] = ACTIONS(1142), - [anon_sym_thread_local] = ACTIONS(1142), - [anon_sym___thread] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_constexpr] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym___restrict__] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym__Noreturn] = ACTIONS(1142), - [anon_sym_noreturn] = ACTIONS(1142), - [anon_sym__Nonnull] = ACTIONS(1142), - [anon_sym_alignas] = ACTIONS(1142), - [anon_sym__Alignas] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym___try] = ACTIONS(1142), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [anon_sym___alignof__] = ACTIONS(1142), - [anon_sym___alignof] = ACTIONS(1142), - [anon_sym__alignof] = ACTIONS(1142), - [anon_sym_alignof] = ACTIONS(1142), - [anon_sym__Alignof] = ACTIONS(1142), - [anon_sym_offsetof] = ACTIONS(1142), - [anon_sym__Generic] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1142), - [anon_sym___asm__] = ACTIONS(1142), - [anon_sym___asm] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [anon_sym_NULL] = ACTIONS(1142), - [anon_sym_nullptr] = ACTIONS(1142), + [226] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym___attribute] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [anon_sym__Nonnull] = ACTIONS(1202), + [anon_sym_alignas] = ACTIONS(1202), + [anon_sym__Alignas] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [anon_sym___asm] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym___attribute] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [anon_sym__Nonnull] = ACTIONS(1234), + [anon_sym_alignas] = ACTIONS(1234), + [anon_sym__Alignas] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [anon_sym___asm] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1146), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym___attribute] = ACTIONS(1146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), - [anon_sym___declspec] = ACTIONS(1146), - [anon_sym___cdecl] = ACTIONS(1146), - [anon_sym___clrcall] = ACTIONS(1146), - [anon_sym___stdcall] = ACTIONS(1146), - [anon_sym___fastcall] = ACTIONS(1146), - [anon_sym___thiscall] = ACTIONS(1146), - [anon_sym___vectorcall] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym___inline] = ACTIONS(1146), - [anon_sym___inline__] = ACTIONS(1146), - [anon_sym___forceinline] = ACTIONS(1146), - [anon_sym_thread_local] = ACTIONS(1146), - [anon_sym___thread] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_constexpr] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym___restrict__] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym__Noreturn] = ACTIONS(1146), - [anon_sym_noreturn] = ACTIONS(1146), - [anon_sym__Nonnull] = ACTIONS(1146), - [anon_sym_alignas] = ACTIONS(1146), - [anon_sym__Alignas] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1146), - [anon_sym___leave] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [anon_sym___alignof__] = ACTIONS(1146), - [anon_sym___alignof] = ACTIONS(1146), - [anon_sym__alignof] = ACTIONS(1146), - [anon_sym_alignof] = ACTIONS(1146), - [anon_sym__Alignof] = ACTIONS(1146), - [anon_sym_offsetof] = ACTIONS(1146), - [anon_sym__Generic] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1146), - [anon_sym___asm__] = ACTIONS(1146), - [anon_sym___asm] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [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(1146), - [sym_false] = ACTIONS(1146), - [anon_sym_NULL] = ACTIONS(1146), - [anon_sym_nullptr] = ACTIONS(1146), + [228] = { + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym___attribute] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [anon_sym__Nonnull] = ACTIONS(1234), + [anon_sym_alignas] = ACTIONS(1234), + [anon_sym__Alignas] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [anon_sym___asm] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1150), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym___attribute] = ACTIONS(1150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), - [anon_sym___declspec] = ACTIONS(1150), - [anon_sym___cdecl] = ACTIONS(1150), - [anon_sym___clrcall] = ACTIONS(1150), - [anon_sym___stdcall] = ACTIONS(1150), - [anon_sym___fastcall] = ACTIONS(1150), - [anon_sym___thiscall] = ACTIONS(1150), - [anon_sym___vectorcall] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym___inline] = ACTIONS(1150), - [anon_sym___inline__] = ACTIONS(1150), - [anon_sym___forceinline] = ACTIONS(1150), - [anon_sym_thread_local] = ACTIONS(1150), - [anon_sym___thread] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_constexpr] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym___restrict__] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym__Noreturn] = ACTIONS(1150), - [anon_sym_noreturn] = ACTIONS(1150), - [anon_sym__Nonnull] = ACTIONS(1150), - [anon_sym_alignas] = ACTIONS(1150), - [anon_sym__Alignas] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1150), - [anon_sym___leave] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [anon_sym___alignof__] = ACTIONS(1150), - [anon_sym___alignof] = ACTIONS(1150), - [anon_sym__alignof] = ACTIONS(1150), - [anon_sym_alignof] = ACTIONS(1150), - [anon_sym__Alignof] = ACTIONS(1150), - [anon_sym_offsetof] = ACTIONS(1150), - [anon_sym__Generic] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1150), - [anon_sym___asm__] = ACTIONS(1150), - [anon_sym___asm] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [anon_sym_NULL] = ACTIONS(1150), - [anon_sym_nullptr] = ACTIONS(1150), + [229] = { + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym___attribute] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [anon_sym__Nonnull] = ACTIONS(1238), + [anon_sym_alignas] = ACTIONS(1238), + [anon_sym__Alignas] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [anon_sym___asm] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + }, + [230] = { + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym___attribute] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [anon_sym__Nonnull] = ACTIONS(1238), + [anon_sym_alignas] = ACTIONS(1238), + [anon_sym__Alignas] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [anon_sym___asm] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), + [231] = { + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym___attribute] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [anon_sym__Nonnull] = ACTIONS(1250), + [anon_sym_alignas] = ACTIONS(1250), + [anon_sym__Alignas] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [anon_sym___asm] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(3), }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1214), - [aux_sym_preproc_include_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [anon_sym___attribute] = ACTIONS(1214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), - [anon_sym___declspec] = ACTIONS(1214), - [anon_sym___cdecl] = ACTIONS(1214), - [anon_sym___clrcall] = ACTIONS(1214), - [anon_sym___stdcall] = ACTIONS(1214), - [anon_sym___fastcall] = ACTIONS(1214), - [anon_sym___thiscall] = ACTIONS(1214), - [anon_sym___vectorcall] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___inline] = ACTIONS(1214), - [anon_sym___inline__] = ACTIONS(1214), - [anon_sym___forceinline] = ACTIONS(1214), - [anon_sym_thread_local] = ACTIONS(1214), - [anon_sym___thread] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_constexpr] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym___restrict__] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym__Noreturn] = ACTIONS(1214), - [anon_sym_noreturn] = ACTIONS(1214), - [anon_sym__Nonnull] = ACTIONS(1214), - [anon_sym_alignas] = ACTIONS(1214), - [anon_sym__Alignas] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym___try] = ACTIONS(1214), - [anon_sym___leave] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_sizeof] = ACTIONS(1214), - [anon_sym___alignof__] = ACTIONS(1214), - [anon_sym___alignof] = ACTIONS(1214), - [anon_sym__alignof] = ACTIONS(1214), - [anon_sym_alignof] = ACTIONS(1214), - [anon_sym__Alignof] = ACTIONS(1214), - [anon_sym_offsetof] = ACTIONS(1214), - [anon_sym__Generic] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1214), - [anon_sym___asm__] = ACTIONS(1214), - [anon_sym___asm] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1216), - [anon_sym_L_SQUOTE] = ACTIONS(1216), - [anon_sym_u_SQUOTE] = ACTIONS(1216), - [anon_sym_U_SQUOTE] = ACTIONS(1216), - [anon_sym_u8_SQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_L_DQUOTE] = ACTIONS(1216), - [anon_sym_u_DQUOTE] = ACTIONS(1216), - [anon_sym_U_DQUOTE] = ACTIONS(1216), - [anon_sym_u8_DQUOTE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [anon_sym_NULL] = ACTIONS(1214), - [anon_sym_nullptr] = ACTIONS(1214), + [232] = { + [sym_identifier] = ACTIONS(1186), + [aux_sym_preproc_include_token1] = ACTIONS(1186), + [aux_sym_preproc_def_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym___extension__] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym___attribute__] = ACTIONS(1186), + [anon_sym___attribute] = ACTIONS(1186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), + [anon_sym___declspec] = ACTIONS(1186), + [anon_sym___cdecl] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1186), + [anon_sym___stdcall] = ACTIONS(1186), + [anon_sym___fastcall] = ACTIONS(1186), + [anon_sym___thiscall] = ACTIONS(1186), + [anon_sym___vectorcall] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym___inline] = ACTIONS(1186), + [anon_sym___inline__] = ACTIONS(1186), + [anon_sym___forceinline] = ACTIONS(1186), + [anon_sym_thread_local] = ACTIONS(1186), + [anon_sym___thread] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_constexpr] = ACTIONS(1186), + [anon_sym_volatile] = ACTIONS(1186), + [anon_sym_restrict] = ACTIONS(1186), + [anon_sym___restrict__] = ACTIONS(1186), + [anon_sym__Atomic] = ACTIONS(1186), + [anon_sym__Noreturn] = ACTIONS(1186), + [anon_sym_noreturn] = ACTIONS(1186), + [anon_sym__Nonnull] = ACTIONS(1186), + [anon_sym_alignas] = ACTIONS(1186), + [anon_sym__Alignas] = ACTIONS(1186), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym___try] = ACTIONS(1186), + [anon_sym___leave] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym___alignof__] = ACTIONS(1186), + [anon_sym___alignof] = ACTIONS(1186), + [anon_sym__alignof] = ACTIONS(1186), + [anon_sym_alignof] = ACTIONS(1186), + [anon_sym__Alignof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = ACTIONS(1186), + [anon_sym_asm] = ACTIONS(1186), + [anon_sym___asm__] = ACTIONS(1186), + [anon_sym___asm] = ACTIONS(1186), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(1188), + [anon_sym_u_SQUOTE] = ACTIONS(1188), + [anon_sym_U_SQUOTE] = ACTIONS(1188), + [anon_sym_u8_SQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_L_DQUOTE] = ACTIONS(1188), + [anon_sym_u_DQUOTE] = ACTIONS(1188), + [anon_sym_U_DQUOTE] = ACTIONS(1188), + [anon_sym_u8_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [anon_sym_NULL] = ACTIONS(1186), + [anon_sym_nullptr] = ACTIONS(1186), [sym_comment] = ACTIONS(3), }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___attribute] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym__Nonnull] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [anon_sym___asm] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), + [233] = { + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym___attribute] = ACTIONS(1146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), + [anon_sym___declspec] = ACTIONS(1146), + [anon_sym___cdecl] = ACTIONS(1146), + [anon_sym___clrcall] = ACTIONS(1146), + [anon_sym___stdcall] = ACTIONS(1146), + [anon_sym___fastcall] = ACTIONS(1146), + [anon_sym___thiscall] = ACTIONS(1146), + [anon_sym___vectorcall] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym___inline] = ACTIONS(1146), + [anon_sym___inline__] = ACTIONS(1146), + [anon_sym___forceinline] = ACTIONS(1146), + [anon_sym_thread_local] = ACTIONS(1146), + [anon_sym___thread] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_constexpr] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym___restrict__] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym__Noreturn] = ACTIONS(1146), + [anon_sym_noreturn] = ACTIONS(1146), + [anon_sym__Nonnull] = ACTIONS(1146), + [anon_sym_alignas] = ACTIONS(1146), + [anon_sym__Alignas] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1146), + [anon_sym___leave] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym___alignof__] = ACTIONS(1146), + [anon_sym___alignof] = ACTIONS(1146), + [anon_sym__alignof] = ACTIONS(1146), + [anon_sym_alignof] = ACTIONS(1146), + [anon_sym__Alignof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = ACTIONS(1146), + [anon_sym_asm] = ACTIONS(1146), + [anon_sym___asm__] = ACTIONS(1146), + [anon_sym___asm] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [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(1146), + [sym_false] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_nullptr] = ACTIONS(1146), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), + [234] = { + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym___attribute] = ACTIONS(1150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym___declspec] = ACTIONS(1150), + [anon_sym___cdecl] = ACTIONS(1150), + [anon_sym___clrcall] = ACTIONS(1150), + [anon_sym___stdcall] = ACTIONS(1150), + [anon_sym___fastcall] = ACTIONS(1150), + [anon_sym___thiscall] = ACTIONS(1150), + [anon_sym___vectorcall] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym___inline] = ACTIONS(1150), + [anon_sym___inline__] = ACTIONS(1150), + [anon_sym___forceinline] = ACTIONS(1150), + [anon_sym_thread_local] = ACTIONS(1150), + [anon_sym___thread] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_constexpr] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym___restrict__] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym__Noreturn] = ACTIONS(1150), + [anon_sym_noreturn] = ACTIONS(1150), + [anon_sym__Nonnull] = ACTIONS(1150), + [anon_sym_alignas] = ACTIONS(1150), + [anon_sym__Alignas] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1150), + [anon_sym___leave] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym___alignof__] = ACTIONS(1150), + [anon_sym___alignof] = ACTIONS(1150), + [anon_sym__alignof] = ACTIONS(1150), + [anon_sym_alignof] = ACTIONS(1150), + [anon_sym__Alignof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1150), + [anon_sym_asm] = ACTIONS(1150), + [anon_sym___asm__] = ACTIONS(1150), + [anon_sym___asm] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [anon_sym_NULL] = ACTIONS(1150), + [anon_sym_nullptr] = ACTIONS(1150), [sym_comment] = ACTIONS(3), }, - [232] = { + [235] = { + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym___attribute] = ACTIONS(1166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym___declspec] = ACTIONS(1166), + [anon_sym___cdecl] = ACTIONS(1166), + [anon_sym___clrcall] = ACTIONS(1166), + [anon_sym___stdcall] = ACTIONS(1166), + [anon_sym___fastcall] = ACTIONS(1166), + [anon_sym___thiscall] = ACTIONS(1166), + [anon_sym___vectorcall] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___inline] = ACTIONS(1166), + [anon_sym___inline__] = ACTIONS(1166), + [anon_sym___forceinline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1166), + [anon_sym___thread] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_constexpr] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym___restrict__] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym__Noreturn] = ACTIONS(1166), + [anon_sym_noreturn] = ACTIONS(1166), + [anon_sym__Nonnull] = ACTIONS(1166), + [anon_sym_alignas] = ACTIONS(1166), + [anon_sym__Alignas] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1166), + [anon_sym___leave] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym___alignof__] = ACTIONS(1166), + [anon_sym___alignof] = ACTIONS(1166), + [anon_sym__alignof] = ACTIONS(1166), + [anon_sym_alignof] = ACTIONS(1166), + [anon_sym__Alignof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = ACTIONS(1166), + [anon_sym_asm] = ACTIONS(1166), + [anon_sym___asm__] = ACTIONS(1166), + [anon_sym___asm] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_NULL] = ACTIONS(1166), + [anon_sym_nullptr] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [236] = { [sym_identifier] = ACTIONS(1170), [aux_sym_preproc_include_token1] = ACTIONS(1170), [aux_sym_preproc_def_token1] = ACTIONS(1170), @@ -40948,116 +41324,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(1172), [anon_sym_u8_DQUOTE] = ACTIONS(1172), [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [anon_sym_NULL] = ACTIONS(1170), + [anon_sym_nullptr] = ACTIONS(1170), [sym_comment] = ACTIONS(3), }, - [234] = { + [237] = { [sym_identifier] = ACTIONS(1174), [aux_sym_preproc_include_token1] = ACTIONS(1174), [aux_sym_preproc_def_token1] = ACTIONS(1174), @@ -41160,213 +41433,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1174), [sym_comment] = ACTIONS(3), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1246), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___attribute] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym__Nonnull] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [anon_sym___asm] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), + [238] = { + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym___attribute] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [anon_sym__Nonnull] = ACTIONS(1178), + [anon_sym_alignas] = ACTIONS(1178), + [anon_sym__Alignas] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [anon_sym___asm] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), [sym_comment] = ACTIONS(3), }, - [237] = { + [239] = { [sym_identifier] = ACTIONS(1178), [aux_sym_preproc_include_token1] = ACTIONS(1178), [aux_sym_preproc_def_token1] = ACTIONS(1178), @@ -41469,7 +41639,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1178), [sym_comment] = ACTIONS(3), }, - [238] = { + [240] = { + [sym_identifier] = ACTIONS(1182), + [aux_sym_preproc_include_token1] = ACTIONS(1182), + [aux_sym_preproc_def_token1] = ACTIONS(1182), + [aux_sym_preproc_if_token1] = ACTIONS(1182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [sym_preproc_directive] = ACTIONS(1182), + [anon_sym_LPAREN2] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym___extension__] = ACTIONS(1182), + [anon_sym_typedef] = ACTIONS(1182), + [anon_sym_extern] = ACTIONS(1182), + [anon_sym___attribute__] = ACTIONS(1182), + [anon_sym___attribute] = ACTIONS(1182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), + [anon_sym___declspec] = ACTIONS(1182), + [anon_sym___cdecl] = ACTIONS(1182), + [anon_sym___clrcall] = ACTIONS(1182), + [anon_sym___stdcall] = ACTIONS(1182), + [anon_sym___fastcall] = ACTIONS(1182), + [anon_sym___thiscall] = ACTIONS(1182), + [anon_sym___vectorcall] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_signed] = ACTIONS(1182), + [anon_sym_unsigned] = ACTIONS(1182), + [anon_sym_long] = ACTIONS(1182), + [anon_sym_short] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1182), + [anon_sym_auto] = ACTIONS(1182), + [anon_sym_register] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym___inline] = ACTIONS(1182), + [anon_sym___inline__] = ACTIONS(1182), + [anon_sym___forceinline] = ACTIONS(1182), + [anon_sym_thread_local] = ACTIONS(1182), + [anon_sym___thread] = ACTIONS(1182), + [anon_sym_const] = ACTIONS(1182), + [anon_sym_constexpr] = ACTIONS(1182), + [anon_sym_volatile] = ACTIONS(1182), + [anon_sym_restrict] = ACTIONS(1182), + [anon_sym___restrict__] = ACTIONS(1182), + [anon_sym__Atomic] = ACTIONS(1182), + [anon_sym__Noreturn] = ACTIONS(1182), + [anon_sym_noreturn] = ACTIONS(1182), + [anon_sym__Nonnull] = ACTIONS(1182), + [anon_sym_alignas] = ACTIONS(1182), + [anon_sym__Alignas] = ACTIONS(1182), + [sym_primitive_type] = ACTIONS(1182), + [anon_sym_enum] = ACTIONS(1182), + [anon_sym_struct] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(1182), + [anon_sym_if] = ACTIONS(1182), + [anon_sym_else] = ACTIONS(1182), + [anon_sym_switch] = ACTIONS(1182), + [anon_sym_case] = ACTIONS(1182), + [anon_sym_default] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_do] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_goto] = ACTIONS(1182), + [anon_sym___try] = ACTIONS(1182), + [anon_sym___leave] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_sizeof] = ACTIONS(1182), + [anon_sym___alignof__] = ACTIONS(1182), + [anon_sym___alignof] = ACTIONS(1182), + [anon_sym__alignof] = ACTIONS(1182), + [anon_sym_alignof] = ACTIONS(1182), + [anon_sym__Alignof] = ACTIONS(1182), + [anon_sym_offsetof] = ACTIONS(1182), + [anon_sym__Generic] = ACTIONS(1182), + [anon_sym_asm] = ACTIONS(1182), + [anon_sym___asm__] = ACTIONS(1182), + [anon_sym___asm] = ACTIONS(1182), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_L_SQUOTE] = ACTIONS(1184), + [anon_sym_u_SQUOTE] = ACTIONS(1184), + [anon_sym_U_SQUOTE] = ACTIONS(1184), + [anon_sym_u8_SQUOTE] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_L_DQUOTE] = ACTIONS(1184), + [anon_sym_u_DQUOTE] = ACTIONS(1184), + [anon_sym_U_DQUOTE] = ACTIONS(1184), + [anon_sym_u8_DQUOTE] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_true] = ACTIONS(1182), + [sym_false] = ACTIONS(1182), + [anon_sym_NULL] = ACTIONS(1182), + [anon_sym_nullptr] = ACTIONS(1182), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym___attribute] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [anon_sym__Nonnull] = ACTIONS(1198), + [anon_sym_alignas] = ACTIONS(1198), + [anon_sym__Alignas] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [anon_sym___asm] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + }, + [242] = { + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym___attribute__] = ACTIONS(1206), + [anon_sym___attribute] = ACTIONS(1206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), + [anon_sym___declspec] = ACTIONS(1206), + [anon_sym___cdecl] = ACTIONS(1206), + [anon_sym___clrcall] = ACTIONS(1206), + [anon_sym___stdcall] = ACTIONS(1206), + [anon_sym___fastcall] = ACTIONS(1206), + [anon_sym___thiscall] = ACTIONS(1206), + [anon_sym___vectorcall] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym___inline] = ACTIONS(1206), + [anon_sym___inline__] = ACTIONS(1206), + [anon_sym___forceinline] = ACTIONS(1206), + [anon_sym_thread_local] = ACTIONS(1206), + [anon_sym___thread] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_constexpr] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_restrict] = ACTIONS(1206), + [anon_sym___restrict__] = ACTIONS(1206), + [anon_sym__Atomic] = ACTIONS(1206), + [anon_sym__Noreturn] = ACTIONS(1206), + [anon_sym_noreturn] = ACTIONS(1206), + [anon_sym__Nonnull] = ACTIONS(1206), + [anon_sym_alignas] = ACTIONS(1206), + [anon_sym__Alignas] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_goto] = ACTIONS(1206), + [anon_sym___try] = ACTIONS(1206), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym___alignof__] = ACTIONS(1206), + [anon_sym___alignof] = ACTIONS(1206), + [anon_sym__alignof] = ACTIONS(1206), + [anon_sym_alignof] = ACTIONS(1206), + [anon_sym__Alignof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = ACTIONS(1206), + [anon_sym_asm] = ACTIONS(1206), + [anon_sym___asm__] = ACTIONS(1206), + [anon_sym___asm] = ACTIONS(1206), + [sym_number_literal] = ACTIONS(1208), + [anon_sym_L_SQUOTE] = ACTIONS(1208), + [anon_sym_u_SQUOTE] = ACTIONS(1208), + [anon_sym_U_SQUOTE] = ACTIONS(1208), + [anon_sym_u8_SQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_L_DQUOTE] = ACTIONS(1208), + [anon_sym_u_DQUOTE] = ACTIONS(1208), + [anon_sym_U_DQUOTE] = ACTIONS(1208), + [anon_sym_u8_DQUOTE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [anon_sym_NULL] = ACTIONS(1206), + [anon_sym_nullptr] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(1184), [sym_identifier] = ACTIONS(1182), [aux_sym_preproc_include_token1] = ACTIONS(1182), [aux_sym_preproc_def_token1] = ACTIONS(1182), @@ -41499,7 +41979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1182), [anon_sym___vectorcall] = ACTIONS(1182), [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), [anon_sym_signed] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(1182), [anon_sym_long] = ACTIONS(1182), @@ -41572,8 +42051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1136), + [244] = { [sym_identifier] = ACTIONS(1134), [aux_sym_preproc_include_token1] = ACTIONS(1134), [aux_sym_preproc_def_token1] = ACTIONS(1134), @@ -41603,6 +42081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1134), [anon_sym___vectorcall] = ACTIONS(1134), [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), [anon_sym_signed] = ACTIONS(1134), [anon_sym_unsigned] = ACTIONS(1134), [anon_sym_long] = ACTIONS(1134), @@ -41675,733 +42154,939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1134), [sym_comment] = ACTIONS(3), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym___extension__] = ACTIONS(1158), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym___attribute] = ACTIONS(1158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(1158), - [anon_sym___cdecl] = ACTIONS(1158), - [anon_sym___clrcall] = ACTIONS(1158), - [anon_sym___stdcall] = ACTIONS(1158), - [anon_sym___fastcall] = ACTIONS(1158), - [anon_sym___thiscall] = ACTIONS(1158), - [anon_sym___vectorcall] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym___inline] = ACTIONS(1158), - [anon_sym___inline__] = ACTIONS(1158), - [anon_sym___forceinline] = ACTIONS(1158), - [anon_sym_thread_local] = ACTIONS(1158), - [anon_sym___thread] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_constexpr] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym___restrict__] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym__Noreturn] = ACTIONS(1158), - [anon_sym_noreturn] = ACTIONS(1158), - [anon_sym__Nonnull] = ACTIONS(1158), - [anon_sym_alignas] = ACTIONS(1158), - [anon_sym__Alignas] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym___try] = ACTIONS(1158), - [anon_sym___leave] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [anon_sym___alignof__] = ACTIONS(1158), - [anon_sym___alignof] = ACTIONS(1158), - [anon_sym__alignof] = ACTIONS(1158), - [anon_sym_alignof] = ACTIONS(1158), - [anon_sym__Alignof] = ACTIONS(1158), - [anon_sym_offsetof] = ACTIONS(1158), - [anon_sym__Generic] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1158), - [anon_sym___asm__] = ACTIONS(1158), - [anon_sym___asm] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [anon_sym_NULL] = ACTIONS(1158), - [anon_sym_nullptr] = ACTIONS(1158), + [245] = { + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym___extension__] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym___attribute] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym___declspec] = ACTIONS(1142), + [anon_sym___cdecl] = ACTIONS(1142), + [anon_sym___clrcall] = ACTIONS(1142), + [anon_sym___stdcall] = ACTIONS(1142), + [anon_sym___fastcall] = ACTIONS(1142), + [anon_sym___thiscall] = ACTIONS(1142), + [anon_sym___vectorcall] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym___inline] = ACTIONS(1142), + [anon_sym___inline__] = ACTIONS(1142), + [anon_sym___forceinline] = ACTIONS(1142), + [anon_sym_thread_local] = ACTIONS(1142), + [anon_sym___thread] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_constexpr] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym___restrict__] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym__Noreturn] = ACTIONS(1142), + [anon_sym_noreturn] = ACTIONS(1142), + [anon_sym__Nonnull] = ACTIONS(1142), + [anon_sym_alignas] = ACTIONS(1142), + [anon_sym__Alignas] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym___try] = ACTIONS(1142), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym___alignof__] = ACTIONS(1142), + [anon_sym___alignof] = ACTIONS(1142), + [anon_sym__alignof] = ACTIONS(1142), + [anon_sym_alignof] = ACTIONS(1142), + [anon_sym__Alignof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = ACTIONS(1142), + [anon_sym_asm] = ACTIONS(1142), + [anon_sym___asm__] = ACTIONS(1142), + [anon_sym___asm] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [anon_sym_NULL] = ACTIONS(1142), + [anon_sym_nullptr] = ACTIONS(1142), [sym_comment] = ACTIONS(3), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1250), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___attribute] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym__Nonnull] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [anon_sym___asm] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), + [246] = { + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym___attribute] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [anon_sym__Nonnull] = ACTIONS(1246), + [anon_sym_alignas] = ACTIONS(1246), + [anon_sym__Alignas] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [anon_sym___asm] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym___extension__] = ACTIONS(1162), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym___attribute] = ACTIONS(1162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), - [anon_sym___declspec] = ACTIONS(1162), - [anon_sym___cdecl] = ACTIONS(1162), - [anon_sym___clrcall] = ACTIONS(1162), - [anon_sym___stdcall] = ACTIONS(1162), - [anon_sym___fastcall] = ACTIONS(1162), - [anon_sym___thiscall] = ACTIONS(1162), - [anon_sym___vectorcall] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1164), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym___inline] = ACTIONS(1162), - [anon_sym___inline__] = ACTIONS(1162), - [anon_sym___forceinline] = ACTIONS(1162), - [anon_sym_thread_local] = ACTIONS(1162), - [anon_sym___thread] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_constexpr] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym___restrict__] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym__Noreturn] = ACTIONS(1162), - [anon_sym_noreturn] = ACTIONS(1162), - [anon_sym__Nonnull] = ACTIONS(1162), - [anon_sym_alignas] = ACTIONS(1162), - [anon_sym__Alignas] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_else] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym___try] = ACTIONS(1162), - [anon_sym___leave] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [anon_sym___alignof__] = ACTIONS(1162), - [anon_sym___alignof] = ACTIONS(1162), - [anon_sym__alignof] = ACTIONS(1162), - [anon_sym_alignof] = ACTIONS(1162), - [anon_sym__Alignof] = ACTIONS(1162), - [anon_sym_offsetof] = ACTIONS(1162), - [anon_sym__Generic] = ACTIONS(1162), - [anon_sym_asm] = ACTIONS(1162), - [anon_sym___asm__] = ACTIONS(1162), - [anon_sym___asm] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [anon_sym_NULL] = ACTIONS(1162), - [anon_sym_nullptr] = ACTIONS(1162), + [247] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(1210), + [aux_sym_preproc_def_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), + [sym_preproc_directive] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym___attribute__] = ACTIONS(1210), + [anon_sym___attribute] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), + [anon_sym___declspec] = ACTIONS(1210), + [anon_sym___cdecl] = ACTIONS(1210), + [anon_sym___clrcall] = ACTIONS(1210), + [anon_sym___stdcall] = ACTIONS(1210), + [anon_sym___fastcall] = ACTIONS(1210), + [anon_sym___thiscall] = ACTIONS(1210), + [anon_sym___vectorcall] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym___inline] = ACTIONS(1210), + [anon_sym___inline__] = ACTIONS(1210), + [anon_sym___forceinline] = ACTIONS(1210), + [anon_sym_thread_local] = ACTIONS(1210), + [anon_sym___thread] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_constexpr] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_restrict] = ACTIONS(1210), + [anon_sym___restrict__] = ACTIONS(1210), + [anon_sym__Atomic] = ACTIONS(1210), + [anon_sym__Noreturn] = ACTIONS(1210), + [anon_sym_noreturn] = ACTIONS(1210), + [anon_sym__Nonnull] = ACTIONS(1210), + [anon_sym_alignas] = ACTIONS(1210), + [anon_sym__Alignas] = ACTIONS(1210), + [sym_primitive_type] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_goto] = ACTIONS(1210), + [anon_sym___try] = ACTIONS(1210), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym___alignof__] = ACTIONS(1210), + [anon_sym___alignof] = ACTIONS(1210), + [anon_sym__alignof] = ACTIONS(1210), + [anon_sym_alignof] = ACTIONS(1210), + [anon_sym__Alignof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [anon_sym___asm] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [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(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym___attribute] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym___declspec] = ACTIONS(1166), - [anon_sym___cdecl] = ACTIONS(1166), - [anon_sym___clrcall] = ACTIONS(1166), - [anon_sym___stdcall] = ACTIONS(1166), - [anon_sym___fastcall] = ACTIONS(1166), - [anon_sym___thiscall] = ACTIONS(1166), - [anon_sym___vectorcall] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym___inline] = ACTIONS(1166), - [anon_sym___inline__] = ACTIONS(1166), - [anon_sym___forceinline] = ACTIONS(1166), - [anon_sym_thread_local] = ACTIONS(1166), - [anon_sym___thread] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym___restrict__] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym__Noreturn] = ACTIONS(1166), - [anon_sym_noreturn] = ACTIONS(1166), - [anon_sym__Nonnull] = ACTIONS(1166), - [anon_sym_alignas] = ACTIONS(1166), - [anon_sym__Alignas] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_else] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym___try] = ACTIONS(1166), - [anon_sym___leave] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym___alignof__] = ACTIONS(1166), - [anon_sym___alignof] = ACTIONS(1166), - [anon_sym__alignof] = ACTIONS(1166), - [anon_sym_alignof] = ACTIONS(1166), - [anon_sym__Alignof] = ACTIONS(1166), - [anon_sym_offsetof] = ACTIONS(1166), - [anon_sym__Generic] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1166), - [anon_sym___asm__] = ACTIONS(1166), - [anon_sym___asm] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [anon_sym_NULL] = ACTIONS(1166), - [anon_sym_nullptr] = ACTIONS(1166), + [248] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___attribute] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym__Nonnull] = ACTIONS(1254), + [anon_sym_alignas] = ACTIONS(1254), + [anon_sym__Alignas] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [anon_sym___asm] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [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___extension__] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym___inline] = ACTIONS(1218), + [anon_sym___inline__] = ACTIONS(1218), + [anon_sym___forceinline] = ACTIONS(1218), + [anon_sym_thread_local] = ACTIONS(1218), + [anon_sym___thread] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1218), + [anon_sym__Nonnull] = ACTIONS(1218), + [anon_sym_alignas] = ACTIONS(1218), + [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym___alignof__] = ACTIONS(1218), + [anon_sym___alignof] = ACTIONS(1218), + [anon_sym__alignof] = ACTIONS(1218), + [anon_sym_alignof] = ACTIONS(1218), + [anon_sym__Alignof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(1186), - [aux_sym_preproc_include_token1] = ACTIONS(1186), - [aux_sym_preproc_def_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), - [sym_preproc_directive] = ACTIONS(1186), - [anon_sym_LPAREN2] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym___extension__] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym___attribute__] = ACTIONS(1186), - [anon_sym___attribute] = ACTIONS(1186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), - [anon_sym___declspec] = ACTIONS(1186), - [anon_sym___cdecl] = ACTIONS(1186), - [anon_sym___clrcall] = ACTIONS(1186), - [anon_sym___stdcall] = ACTIONS(1186), - [anon_sym___fastcall] = ACTIONS(1186), - [anon_sym___thiscall] = ACTIONS(1186), - [anon_sym___vectorcall] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_auto] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_inline] = ACTIONS(1186), - [anon_sym___inline] = ACTIONS(1186), - [anon_sym___inline__] = ACTIONS(1186), - [anon_sym___forceinline] = ACTIONS(1186), - [anon_sym_thread_local] = ACTIONS(1186), - [anon_sym___thread] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_constexpr] = ACTIONS(1186), - [anon_sym_volatile] = ACTIONS(1186), - [anon_sym_restrict] = ACTIONS(1186), - [anon_sym___restrict__] = ACTIONS(1186), - [anon_sym__Atomic] = ACTIONS(1186), - [anon_sym__Noreturn] = ACTIONS(1186), - [anon_sym_noreturn] = ACTIONS(1186), - [anon_sym__Nonnull] = ACTIONS(1186), - [anon_sym_alignas] = ACTIONS(1186), - [anon_sym__Alignas] = ACTIONS(1186), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym___try] = ACTIONS(1186), - [anon_sym___leave] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_sizeof] = ACTIONS(1186), - [anon_sym___alignof__] = ACTIONS(1186), - [anon_sym___alignof] = ACTIONS(1186), - [anon_sym__alignof] = ACTIONS(1186), - [anon_sym_alignof] = ACTIONS(1186), - [anon_sym__Alignof] = ACTIONS(1186), - [anon_sym_offsetof] = ACTIONS(1186), - [anon_sym__Generic] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym___asm__] = ACTIONS(1186), - [anon_sym___asm] = ACTIONS(1186), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(1188), - [anon_sym_u_SQUOTE] = ACTIONS(1188), - [anon_sym_U_SQUOTE] = ACTIONS(1188), - [anon_sym_u8_SQUOTE] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_L_DQUOTE] = ACTIONS(1188), - [anon_sym_u_DQUOTE] = ACTIONS(1188), - [anon_sym_U_DQUOTE] = ACTIONS(1188), - [anon_sym_u8_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_true] = ACTIONS(1186), - [sym_false] = ACTIONS(1186), - [anon_sym_NULL] = ACTIONS(1186), - [anon_sym_nullptr] = ACTIONS(1186), + [250] = { + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym___attribute__] = ACTIONS(1222), + [anon_sym___attribute] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), + [anon_sym___declspec] = ACTIONS(1222), + [anon_sym___cdecl] = ACTIONS(1222), + [anon_sym___clrcall] = ACTIONS(1222), + [anon_sym___stdcall] = ACTIONS(1222), + [anon_sym___fastcall] = ACTIONS(1222), + [anon_sym___thiscall] = ACTIONS(1222), + [anon_sym___vectorcall] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym___inline] = ACTIONS(1222), + [anon_sym___inline__] = ACTIONS(1222), + [anon_sym___forceinline] = ACTIONS(1222), + [anon_sym_thread_local] = ACTIONS(1222), + [anon_sym___thread] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_constexpr] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym___restrict__] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym__Noreturn] = ACTIONS(1222), + [anon_sym_noreturn] = ACTIONS(1222), + [anon_sym__Nonnull] = ACTIONS(1222), + [anon_sym_alignas] = ACTIONS(1222), + [anon_sym__Alignas] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1222), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym___alignof__] = ACTIONS(1222), + [anon_sym___alignof] = ACTIONS(1222), + [anon_sym__alignof] = ACTIONS(1222), + [anon_sym_alignof] = ACTIONS(1222), + [anon_sym__Alignof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = ACTIONS(1222), + [anon_sym_asm] = ACTIONS(1222), + [anon_sym___asm__] = ACTIONS(1222), + [anon_sym___asm] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_L_SQUOTE] = ACTIONS(1224), + [anon_sym_u_SQUOTE] = ACTIONS(1224), + [anon_sym_U_SQUOTE] = ACTIONS(1224), + [anon_sym_u8_SQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_L_DQUOTE] = ACTIONS(1224), + [anon_sym_u_DQUOTE] = ACTIONS(1224), + [anon_sym_U_DQUOTE] = ACTIONS(1224), + [anon_sym_u8_DQUOTE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [anon_sym_NULL] = ACTIONS(1222), + [anon_sym_nullptr] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, - [245] = { + [251] = { + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym___attribute] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [anon_sym__Nonnull] = ACTIONS(1198), + [anon_sym_alignas] = ACTIONS(1198), + [anon_sym__Alignas] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [anon_sym___asm] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + }, + [252] = { [ts_builtin_sym_end] = ACTIONS(1244), [sym_identifier] = ACTIONS(1242), [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___attribute] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym__Nonnull] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [anon_sym___asm] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_identifier] = ACTIONS(1182), - [aux_sym_preproc_include_token1] = ACTIONS(1182), - [aux_sym_preproc_def_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), - [sym_preproc_directive] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym___extension__] = ACTIONS(1182), - [anon_sym_typedef] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym___attribute__] = ACTIONS(1182), - [anon_sym___attribute] = ACTIONS(1182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), - [anon_sym___declspec] = ACTIONS(1182), - [anon_sym___cdecl] = ACTIONS(1182), - [anon_sym___clrcall] = ACTIONS(1182), - [anon_sym___stdcall] = ACTIONS(1182), - [anon_sym___fastcall] = ACTIONS(1182), - [anon_sym___thiscall] = ACTIONS(1182), - [anon_sym___vectorcall] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_signed] = ACTIONS(1182), - [anon_sym_unsigned] = ACTIONS(1182), - [anon_sym_long] = ACTIONS(1182), - [anon_sym_short] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_inline] = ACTIONS(1182), - [anon_sym___inline] = ACTIONS(1182), - [anon_sym___inline__] = ACTIONS(1182), - [anon_sym___forceinline] = ACTIONS(1182), - [anon_sym_thread_local] = ACTIONS(1182), - [anon_sym___thread] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_constexpr] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym___restrict__] = ACTIONS(1182), - [anon_sym__Atomic] = ACTIONS(1182), - [anon_sym__Noreturn] = ACTIONS(1182), - [anon_sym_noreturn] = ACTIONS(1182), - [anon_sym__Nonnull] = ACTIONS(1182), - [anon_sym_alignas] = ACTIONS(1182), - [anon_sym__Alignas] = ACTIONS(1182), - [sym_primitive_type] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1182), - [anon_sym___try] = ACTIONS(1182), - [anon_sym___leave] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_sizeof] = ACTIONS(1182), - [anon_sym___alignof__] = ACTIONS(1182), - [anon_sym___alignof] = ACTIONS(1182), - [anon_sym__alignof] = ACTIONS(1182), - [anon_sym_alignof] = ACTIONS(1182), - [anon_sym__Alignof] = ACTIONS(1182), - [anon_sym_offsetof] = ACTIONS(1182), - [anon_sym__Generic] = ACTIONS(1182), - [anon_sym_asm] = ACTIONS(1182), - [anon_sym___asm__] = ACTIONS(1182), - [anon_sym___asm] = ACTIONS(1182), - [sym_number_literal] = ACTIONS(1184), - [anon_sym_L_SQUOTE] = ACTIONS(1184), - [anon_sym_u_SQUOTE] = ACTIONS(1184), - [anon_sym_U_SQUOTE] = ACTIONS(1184), - [anon_sym_u8_SQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_L_DQUOTE] = ACTIONS(1184), - [anon_sym_u_DQUOTE] = ACTIONS(1184), - [anon_sym_U_DQUOTE] = ACTIONS(1184), - [anon_sym_u8_DQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_true] = ACTIONS(1182), - [sym_false] = ACTIONS(1182), - [anon_sym_NULL] = ACTIONS(1182), - [anon_sym_nullptr] = ACTIONS(1182), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym___extension__] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym___attribute] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym___inline] = ACTIONS(1242), + [anon_sym___inline__] = ACTIONS(1242), + [anon_sym___forceinline] = ACTIONS(1242), + [anon_sym_thread_local] = ACTIONS(1242), + [anon_sym___thread] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_constexpr] = ACTIONS(1242), + [anon_sym_volatile] = ACTIONS(1242), + [anon_sym_restrict] = ACTIONS(1242), + [anon_sym___restrict__] = ACTIONS(1242), + [anon_sym__Atomic] = ACTIONS(1242), + [anon_sym__Noreturn] = ACTIONS(1242), + [anon_sym_noreturn] = ACTIONS(1242), + [anon_sym__Nonnull] = ACTIONS(1242), + [anon_sym_alignas] = ACTIONS(1242), + [anon_sym__Alignas] = ACTIONS(1242), + [sym_primitive_type] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_goto] = ACTIONS(1242), + [anon_sym___try] = ACTIONS(1242), + [anon_sym___leave] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym___alignof__] = ACTIONS(1242), + [anon_sym___alignof] = ACTIONS(1242), + [anon_sym__alignof] = ACTIONS(1242), + [anon_sym_alignof] = ACTIONS(1242), + [anon_sym__Alignof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = ACTIONS(1242), + [anon_sym_asm] = ACTIONS(1242), + [anon_sym___asm__] = ACTIONS(1242), + [anon_sym___asm] = ACTIONS(1242), + [sym_number_literal] = ACTIONS(1244), + [anon_sym_L_SQUOTE] = ACTIONS(1244), + [anon_sym_u_SQUOTE] = ACTIONS(1244), + [anon_sym_U_SQUOTE] = ACTIONS(1244), + [anon_sym_u8_SQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [anon_sym_NULL] = ACTIONS(1242), + [anon_sym_nullptr] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1172), + [253] = { + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym___attribute__] = ACTIONS(1206), + [anon_sym___attribute] = ACTIONS(1206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), + [anon_sym___declspec] = ACTIONS(1206), + [anon_sym___cdecl] = ACTIONS(1206), + [anon_sym___clrcall] = ACTIONS(1206), + [anon_sym___stdcall] = ACTIONS(1206), + [anon_sym___fastcall] = ACTIONS(1206), + [anon_sym___thiscall] = ACTIONS(1206), + [anon_sym___vectorcall] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym___inline] = ACTIONS(1206), + [anon_sym___inline__] = ACTIONS(1206), + [anon_sym___forceinline] = ACTIONS(1206), + [anon_sym_thread_local] = ACTIONS(1206), + [anon_sym___thread] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_constexpr] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_restrict] = ACTIONS(1206), + [anon_sym___restrict__] = ACTIONS(1206), + [anon_sym__Atomic] = ACTIONS(1206), + [anon_sym__Noreturn] = ACTIONS(1206), + [anon_sym_noreturn] = ACTIONS(1206), + [anon_sym__Nonnull] = ACTIONS(1206), + [anon_sym_alignas] = ACTIONS(1206), + [anon_sym__Alignas] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_goto] = ACTIONS(1206), + [anon_sym___try] = ACTIONS(1206), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym___alignof__] = ACTIONS(1206), + [anon_sym___alignof] = ACTIONS(1206), + [anon_sym__alignof] = ACTIONS(1206), + [anon_sym_alignof] = ACTIONS(1206), + [anon_sym__Alignof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = ACTIONS(1206), + [anon_sym_asm] = ACTIONS(1206), + [anon_sym___asm__] = ACTIONS(1206), + [anon_sym___asm] = ACTIONS(1206), + [sym_number_literal] = ACTIONS(1208), + [anon_sym_L_SQUOTE] = ACTIONS(1208), + [anon_sym_u_SQUOTE] = ACTIONS(1208), + [anon_sym_U_SQUOTE] = ACTIONS(1208), + [anon_sym_u8_SQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_L_DQUOTE] = ACTIONS(1208), + [anon_sym_u_DQUOTE] = ACTIONS(1208), + [anon_sym_U_DQUOTE] = ACTIONS(1208), + [anon_sym_u8_DQUOTE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [anon_sym_NULL] = ACTIONS(1206), + [anon_sym_nullptr] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + }, + [254] = { [sym_identifier] = ACTIONS(1170), [aux_sym_preproc_include_token1] = ACTIONS(1170), [aux_sym_preproc_def_token1] = ACTIONS(1170), [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token2] = ACTIONS(1170), [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), [sym_preproc_directive] = ACTIONS(1170), @@ -42499,1036 +43184,2659 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1170), [sym_comment] = ACTIONS(3), }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), + [255] = { + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [anon_sym_COMMA] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym___attribute] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [anon_sym__Nonnull] = ACTIONS(1270), + [anon_sym_alignas] = ACTIONS(1270), + [anon_sym__Alignas] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [anon_sym___asm] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___attribute] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [anon_sym__Nonnull] = ACTIONS(1368), + [anon_sym_alignas] = ACTIONS(1368), + [anon_sym__Alignas] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [anon_sym___asm] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [257] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = 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___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [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___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1266), + [anon_sym__Nonnull] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = 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___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), + [259] = { + [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_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym___attribute] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [anon_sym__Nonnull] = ACTIONS(1270), + [anon_sym_alignas] = ACTIONS(1270), + [anon_sym__Alignas] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [anon_sym___asm] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___attribute] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym__Nonnull] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [anon_sym___asm] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), + [260] = { + [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_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___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = 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_RBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1274), + [anon_sym__Nonnull] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = 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___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___attribute] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym__Nonnull] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [anon_sym___asm] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), + [261] = { + [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___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1282), + [anon_sym__Nonnull] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = 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___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym___extension__] = ACTIONS(1190), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym___attribute] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym___inline] = ACTIONS(1190), - [anon_sym___inline__] = ACTIONS(1190), - [anon_sym___forceinline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym___thread] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym__Nonnull] = ACTIONS(1190), - [anon_sym_alignas] = ACTIONS(1190), - [anon_sym__Alignas] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym___alignof__] = ACTIONS(1190), - [anon_sym___alignof] = ACTIONS(1190), - [anon_sym__alignof] = ACTIONS(1190), - [anon_sym_alignof] = ACTIONS(1190), - [anon_sym__Alignof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [anon_sym___asm] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), + [262] = { + [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___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1286), + [anon_sym__Nonnull] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = 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___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [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___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1290), + [anon_sym__Nonnull] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = 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___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [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___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1278), + [anon_sym__Nonnull] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = 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___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___attribute] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym__Nonnull] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = 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___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [anon_sym___asm] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [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___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1294), + [anon_sym__Nonnull] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = 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___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + }, + [267] = { + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym___attribute] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [anon_sym__Nonnull] = ACTIONS(1262), + [anon_sym_alignas] = ACTIONS(1262), + [anon_sym__Alignas] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [anon_sym___asm] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + }, + [268] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym__Nonnull] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = 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___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [anon_sym___asm] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___attribute] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym__Nonnull] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [anon_sym___asm] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [sym_expression] = STATE(699), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(675), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(675), + [sym_call_expression] = STATE(675), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(675), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(675), + [sym_initializer_list] = STATE(678), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1380), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___attribute] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_COLON] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_STAR_EQ] = ACTIONS(1380), + [anon_sym_SLASH_EQ] = ACTIONS(1380), + [anon_sym_PERCENT_EQ] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1380), + [anon_sym_DASH_EQ] = ACTIONS(1380), + [anon_sym_LT_LT_EQ] = ACTIONS(1380), + [anon_sym_GT_GT_EQ] = ACTIONS(1380), + [anon_sym_AMP_EQ] = ACTIONS(1380), + [anon_sym_CARET_EQ] = ACTIONS(1380), + [anon_sym_PIPE_EQ] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_DASH_GT] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1194), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), - [sym_preproc_directive] = ACTIONS(1194), - [anon_sym_LPAREN2] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1194), - [anon_sym_typedef] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym___attribute__] = ACTIONS(1194), - [anon_sym___attribute] = ACTIONS(1194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), - [anon_sym___declspec] = ACTIONS(1194), - [anon_sym___cdecl] = ACTIONS(1194), - [anon_sym___clrcall] = ACTIONS(1194), - [anon_sym___stdcall] = ACTIONS(1194), - [anon_sym___fastcall] = ACTIONS(1194), - [anon_sym___thiscall] = ACTIONS(1194), - [anon_sym___vectorcall] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1194), - [anon_sym_unsigned] = ACTIONS(1194), - [anon_sym_long] = ACTIONS(1194), - [anon_sym_short] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_auto] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_inline] = ACTIONS(1194), - [anon_sym___inline] = ACTIONS(1194), - [anon_sym___inline__] = ACTIONS(1194), - [anon_sym___forceinline] = ACTIONS(1194), - [anon_sym_thread_local] = ACTIONS(1194), - [anon_sym___thread] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_constexpr] = ACTIONS(1194), - [anon_sym_volatile] = ACTIONS(1194), - [anon_sym_restrict] = ACTIONS(1194), - [anon_sym___restrict__] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1194), - [anon_sym__Noreturn] = ACTIONS(1194), - [anon_sym_noreturn] = ACTIONS(1194), - [anon_sym__Nonnull] = ACTIONS(1194), - [anon_sym_alignas] = ACTIONS(1194), - [anon_sym__Alignas] = ACTIONS(1194), - [sym_primitive_type] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1194), - [anon_sym___try] = ACTIONS(1194), - [anon_sym___leave] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym___alignof__] = ACTIONS(1194), - [anon_sym___alignof] = ACTIONS(1194), - [anon_sym__alignof] = ACTIONS(1194), - [anon_sym_alignof] = ACTIONS(1194), - [anon_sym__Alignof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(1194), - [anon_sym__Generic] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1194), - [anon_sym___asm__] = ACTIONS(1194), - [anon_sym___asm] = ACTIONS(1194), - [sym_number_literal] = ACTIONS(1196), - [anon_sym_L_SQUOTE] = ACTIONS(1196), - [anon_sym_u_SQUOTE] = ACTIONS(1196), - [anon_sym_U_SQUOTE] = ACTIONS(1196), - [anon_sym_u8_SQUOTE] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_L_DQUOTE] = ACTIONS(1196), - [anon_sym_u_DQUOTE] = ACTIONS(1196), - [anon_sym_U_DQUOTE] = ACTIONS(1196), - [anon_sym_u8_DQUOTE] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_true] = ACTIONS(1194), - [sym_false] = ACTIONS(1194), - [anon_sym_NULL] = ACTIONS(1194), - [anon_sym_nullptr] = ACTIONS(1194), + [271] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___attribute] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym__Nonnull] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = 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___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [anon_sym___asm] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_identifier] = ACTIONS(1198), - [aux_sym_preproc_include_token1] = ACTIONS(1198), - [aux_sym_preproc_def_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1198), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym___extension__] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym___attribute__] = ACTIONS(1198), - [anon_sym___attribute] = ACTIONS(1198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), - [anon_sym___declspec] = ACTIONS(1198), - [anon_sym___cdecl] = ACTIONS(1198), - [anon_sym___clrcall] = ACTIONS(1198), - [anon_sym___stdcall] = ACTIONS(1198), - [anon_sym___fastcall] = ACTIONS(1198), - [anon_sym___thiscall] = ACTIONS(1198), - [anon_sym___vectorcall] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_inline] = ACTIONS(1198), - [anon_sym___inline] = ACTIONS(1198), - [anon_sym___inline__] = ACTIONS(1198), - [anon_sym___forceinline] = ACTIONS(1198), - [anon_sym_thread_local] = ACTIONS(1198), - [anon_sym___thread] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_constexpr] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym___restrict__] = ACTIONS(1198), - [anon_sym__Atomic] = ACTIONS(1198), - [anon_sym__Noreturn] = ACTIONS(1198), - [anon_sym_noreturn] = ACTIONS(1198), - [anon_sym__Nonnull] = ACTIONS(1198), - [anon_sym_alignas] = ACTIONS(1198), - [anon_sym__Alignas] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_goto] = ACTIONS(1198), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1198), - [anon_sym___alignof__] = ACTIONS(1198), - [anon_sym___alignof] = ACTIONS(1198), - [anon_sym__alignof] = ACTIONS(1198), - [anon_sym_alignof] = ACTIONS(1198), - [anon_sym__Alignof] = ACTIONS(1198), - [anon_sym_offsetof] = ACTIONS(1198), - [anon_sym__Generic] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1198), - [anon_sym___asm__] = ACTIONS(1198), - [anon_sym___asm] = ACTIONS(1198), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_L_SQUOTE] = ACTIONS(1200), - [anon_sym_u_SQUOTE] = ACTIONS(1200), - [anon_sym_U_SQUOTE] = ACTIONS(1200), - [anon_sym_u8_SQUOTE] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_L_DQUOTE] = ACTIONS(1200), - [anon_sym_u_DQUOTE] = ACTIONS(1200), - [anon_sym_U_DQUOTE] = ACTIONS(1200), - [anon_sym_u8_DQUOTE] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_true] = ACTIONS(1198), - [sym_false] = ACTIONS(1198), - [anon_sym_NULL] = ACTIONS(1198), - [anon_sym_nullptr] = ACTIONS(1198), + [272] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___attribute] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym__Nonnull] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = 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___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [anon_sym___asm] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1180), - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym___extension__] = ACTIONS(1178), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym___attribute] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), - [anon_sym___declspec] = ACTIONS(1178), - [anon_sym___cdecl] = ACTIONS(1178), - [anon_sym___clrcall] = ACTIONS(1178), - [anon_sym___stdcall] = ACTIONS(1178), - [anon_sym___fastcall] = ACTIONS(1178), - [anon_sym___thiscall] = ACTIONS(1178), - [anon_sym___vectorcall] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym___inline] = ACTIONS(1178), - [anon_sym___inline__] = ACTIONS(1178), - [anon_sym___forceinline] = ACTIONS(1178), - [anon_sym_thread_local] = ACTIONS(1178), - [anon_sym___thread] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_constexpr] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym___restrict__] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym__Noreturn] = ACTIONS(1178), - [anon_sym_noreturn] = ACTIONS(1178), - [anon_sym__Nonnull] = ACTIONS(1178), - [anon_sym_alignas] = ACTIONS(1178), - [anon_sym__Alignas] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym___try] = ACTIONS(1178), - [anon_sym___leave] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [anon_sym___alignof__] = ACTIONS(1178), - [anon_sym___alignof] = ACTIONS(1178), - [anon_sym__alignof] = ACTIONS(1178), - [anon_sym_alignof] = ACTIONS(1178), - [anon_sym__Alignof] = ACTIONS(1178), - [anon_sym_offsetof] = ACTIONS(1178), - [anon_sym__Generic] = ACTIONS(1178), - [anon_sym_asm] = ACTIONS(1178), - [anon_sym___asm__] = ACTIONS(1178), - [anon_sym___asm] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [anon_sym_NULL] = ACTIONS(1178), - [anon_sym_nullptr] = ACTIONS(1178), + [273] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___attribute] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym__Nonnull] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = 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___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [anon_sym___asm] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1194), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token2] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), - [sym_preproc_directive] = ACTIONS(1194), - [anon_sym_LPAREN2] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1194), - [anon_sym_typedef] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym___attribute__] = ACTIONS(1194), - [anon_sym___attribute] = ACTIONS(1194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), - [anon_sym___declspec] = ACTIONS(1194), - [anon_sym___cdecl] = ACTIONS(1194), - [anon_sym___clrcall] = ACTIONS(1194), - [anon_sym___stdcall] = ACTIONS(1194), - [anon_sym___fastcall] = ACTIONS(1194), - [anon_sym___thiscall] = ACTIONS(1194), - [anon_sym___vectorcall] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1194), - [anon_sym_unsigned] = ACTIONS(1194), - [anon_sym_long] = ACTIONS(1194), - [anon_sym_short] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_auto] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_inline] = ACTIONS(1194), - [anon_sym___inline] = ACTIONS(1194), - [anon_sym___inline__] = ACTIONS(1194), - [anon_sym___forceinline] = ACTIONS(1194), - [anon_sym_thread_local] = ACTIONS(1194), - [anon_sym___thread] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_constexpr] = ACTIONS(1194), - [anon_sym_volatile] = ACTIONS(1194), - [anon_sym_restrict] = ACTIONS(1194), - [anon_sym___restrict__] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1194), - [anon_sym__Noreturn] = ACTIONS(1194), - [anon_sym_noreturn] = ACTIONS(1194), - [anon_sym__Nonnull] = ACTIONS(1194), - [anon_sym_alignas] = ACTIONS(1194), - [anon_sym__Alignas] = ACTIONS(1194), - [sym_primitive_type] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1194), - [anon_sym___try] = ACTIONS(1194), - [anon_sym___leave] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym___alignof__] = ACTIONS(1194), - [anon_sym___alignof] = ACTIONS(1194), - [anon_sym__alignof] = ACTIONS(1194), - [anon_sym_alignof] = ACTIONS(1194), - [anon_sym__Alignof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(1194), - [anon_sym__Generic] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1194), - [anon_sym___asm__] = ACTIONS(1194), - [anon_sym___asm] = ACTIONS(1194), - [sym_number_literal] = ACTIONS(1196), - [anon_sym_L_SQUOTE] = ACTIONS(1196), - [anon_sym_u_SQUOTE] = ACTIONS(1196), - [anon_sym_U_SQUOTE] = ACTIONS(1196), - [anon_sym_u8_SQUOTE] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_L_DQUOTE] = ACTIONS(1196), - [anon_sym_u_DQUOTE] = ACTIONS(1196), - [anon_sym_U_DQUOTE] = ACTIONS(1196), - [anon_sym_u8_DQUOTE] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_true] = ACTIONS(1194), - [sym_false] = ACTIONS(1194), - [anon_sym_NULL] = ACTIONS(1194), - [anon_sym_nullptr] = ACTIONS(1194), + [274] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___attribute] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym__Nonnull] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [anon_sym___asm] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___attribute] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym__Nonnull] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [anon_sym___asm] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [277] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___attribute] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym__Nonnull] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [anon_sym___asm] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym___extension__] = ACTIONS(1368), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym___attribute] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym___inline] = ACTIONS(1368), - [anon_sym___inline__] = ACTIONS(1368), - [anon_sym___forceinline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym__Nonnull] = ACTIONS(1368), - [anon_sym_alignas] = ACTIONS(1368), - [anon_sym__Alignas] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym___alignof__] = ACTIONS(1368), - [anon_sym___alignof] = ACTIONS(1368), - [anon_sym__alignof] = ACTIONS(1368), - [anon_sym_alignof] = ACTIONS(1368), - [anon_sym__Alignof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [anon_sym___asm] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [279] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym___attribute] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [anon_sym__Nonnull] = ACTIONS(1344), + [anon_sym_alignas] = ACTIONS(1344), + [anon_sym__Alignas] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym___try] = ACTIONS(1344), + [anon_sym___leave] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [anon_sym___asm] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [258] = { + [280] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___attribute] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [anon_sym__Nonnull] = ACTIONS(1348), + [anon_sym_alignas] = ACTIONS(1348), + [anon_sym__Alignas] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [anon_sym___asm] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [281] = { [sym_identifier] = ACTIONS(1352), [aux_sym_preproc_include_token1] = ACTIONS(1352), [aux_sym_preproc_def_token1] = ACTIONS(1352), @@ -43630,10 +45938,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [259] = { + [282] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym__Nonnull] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = 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___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [anon_sym___asm] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(1358), [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1358), [aux_sym_preproc_if_token1] = ACTIONS(1356), [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), @@ -43700,8 +46112,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1356), [anon_sym_continue] = ACTIONS(1356), [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), [anon_sym_DASH_DASH] = ACTIONS(1358), [anon_sym_PLUS_PLUS] = ACTIONS(1358), [anon_sym_sizeof] = ACTIONS(1356), @@ -43732,11 +46142,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [260] = { + [284] = { [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), @@ -43762,7 +46173,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1364), [anon_sym___vectorcall] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), [anon_sym_signed] = ACTIONS(1364), [anon_sym_unsigned] = ACTIONS(1364), [anon_sym_long] = ACTIONS(1364), @@ -43834,11 +46244,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [261] = { + [285] = { [sym_identifier] = ACTIONS(1368), [aux_sym_preproc_include_token1] = ACTIONS(1368), [aux_sym_preproc_def_token1] = ACTIONS(1368), [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), [sym_preproc_directive] = ACTIONS(1368), @@ -43864,7 +46275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1368), [anon_sym___vectorcall] = ACTIONS(1368), [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_signed] = ACTIONS(1368), [anon_sym_unsigned] = ACTIONS(1368), [anon_sym_long] = ACTIONS(1368), @@ -43873,890 +46283,1401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1368), [anon_sym_register] = ACTIONS(1368), [anon_sym_inline] = ACTIONS(1368), - [anon_sym___inline] = ACTIONS(1368), - [anon_sym___inline__] = ACTIONS(1368), - [anon_sym___forceinline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym__Nonnull] = ACTIONS(1368), - [anon_sym_alignas] = ACTIONS(1368), - [anon_sym__Alignas] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym___try] = ACTIONS(1368), - [anon_sym___leave] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym___alignof__] = ACTIONS(1368), - [anon_sym___alignof] = ACTIONS(1368), - [anon_sym__alignof] = ACTIONS(1368), - [anon_sym_alignof] = ACTIONS(1368), - [anon_sym__Alignof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [anon_sym___asm] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - }, - [262] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym___extension__] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym___attribute] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym__Nonnull] = ACTIONS(1360), - [anon_sym_alignas] = ACTIONS(1360), - [anon_sym__Alignas] = 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___try] = ACTIONS(1360), - [anon_sym___leave] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym___alignof__] = ACTIONS(1360), - [anon_sym___alignof] = ACTIONS(1360), - [anon_sym__alignof] = ACTIONS(1360), - [anon_sym_alignof] = ACTIONS(1360), - [anon_sym__Alignof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [anon_sym___asm] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [anon_sym__Nonnull] = ACTIONS(1368), + [anon_sym_alignas] = ACTIONS(1368), + [anon_sym__Alignas] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [anon_sym___asm] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym___extension__] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym___attribute] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym___inline] = ACTIONS(1372), - [anon_sym___inline__] = ACTIONS(1372), - [anon_sym___forceinline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym__Nonnull] = ACTIONS(1372), - [anon_sym_alignas] = ACTIONS(1372), - [anon_sym__Alignas] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym___try] = ACTIONS(1372), - [anon_sym___leave] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym___alignof__] = ACTIONS(1372), - [anon_sym___alignof] = ACTIONS(1372), - [anon_sym__alignof] = ACTIONS(1372), - [anon_sym_alignof] = ACTIONS(1372), - [anon_sym__Alignof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [anon_sym___asm] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [286] = { + [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___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1266), + [anon_sym__Nonnull] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = 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___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [287] = { + [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___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1274), + [anon_sym__Nonnull] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = 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___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym___extension__] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym___attribute] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym___inline] = ACTIONS(1376), - [anon_sym___inline__] = ACTIONS(1376), - [anon_sym___forceinline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym__Nonnull] = ACTIONS(1376), - [anon_sym_alignas] = ACTIONS(1376), - [anon_sym__Alignas] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym___try] = ACTIONS(1376), - [anon_sym___leave] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym___alignof__] = ACTIONS(1376), - [anon_sym___alignof] = ACTIONS(1376), - [anon_sym__alignof] = ACTIONS(1376), - [anon_sym_alignof] = ACTIONS(1376), - [anon_sym__Alignof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [anon_sym___asm] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [288] = { + [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___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1282), + [anon_sym__Nonnull] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = 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___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [289] = { + [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___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1278), + [anon_sym__Nonnull] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = 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___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [290] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___attribute] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym__Nonnull] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = 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___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [anon_sym___asm] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [291] = { + [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___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1294), + [anon_sym__Nonnull] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = 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___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [292] = { + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token2] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym___attribute] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [anon_sym__Nonnull] = ACTIONS(1262), + [anon_sym_alignas] = ACTIONS(1262), + [anon_sym__Alignas] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [anon_sym___asm] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(3), }, - [270] = { + [293] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___attribute] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym__Nonnull] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = 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___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [anon_sym___asm] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___attribute] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym__Nonnull] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = 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___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [anon_sym___asm] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [295] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___attribute] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym__Nonnull] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = 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___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [anon_sym___asm] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___attribute] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym__Nonnull] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [anon_sym___asm] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___attribute] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym__Nonnull] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [anon_sym___asm] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___attribute] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym__Nonnull] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [anon_sym___asm] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [sym_comment] = ACTIONS(3), + }, + [299] = { [sym_identifier] = ACTIONS(1340), [aux_sym_preproc_include_token1] = ACTIONS(1340), [aux_sym_preproc_def_token1] = ACTIONS(1340), [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), [sym_preproc_directive] = ACTIONS(1340), @@ -44782,7 +47703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1340), [anon_sym___vectorcall] = ACTIONS(1340), [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), [anon_sym_signed] = ACTIONS(1340), [anon_sym_unsigned] = ACTIONS(1340), [anon_sym_long] = ACTIONS(1340), @@ -44847,1748 +47767,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u_DQUOTE] = ACTIONS(1342), [anon_sym_U_DQUOTE] = ACTIONS(1342), [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - }, - [271] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym___attribute] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym__Nonnull] = ACTIONS(1304), - [anon_sym_alignas] = ACTIONS(1304), - [anon_sym__Alignas] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [anon_sym___asm] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [sym_identifier] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___attribute] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym__Nonnull] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [anon_sym___asm] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - }, - [273] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(682), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(682), - [sym_call_expression] = STATE(682), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(682), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(682), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym___attribute] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_PERCENT_EQ] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_LT_LT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_AMP_EQ] = ACTIONS(1388), - [anon_sym_CARET_EQ] = ACTIONS(1388), - [anon_sym_PIPE_EQ] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [274] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [275] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [276] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [277] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [278] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [279] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = 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___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = 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___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [281] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym___attribute] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym___inline] = ACTIONS(1348), - [anon_sym___inline__] = ACTIONS(1348), - [anon_sym___forceinline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym__Nonnull] = ACTIONS(1348), - [anon_sym_alignas] = ACTIONS(1348), - [anon_sym__Alignas] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym___try] = ACTIONS(1348), - [anon_sym___leave] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym___alignof__] = ACTIONS(1348), - [anon_sym___alignof] = ACTIONS(1348), - [anon_sym__alignof] = ACTIONS(1348), - [anon_sym_alignof] = ACTIONS(1348), - [anon_sym__Alignof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [anon_sym___asm] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [286] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym___attribute] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym__Nonnull] = ACTIONS(1304), - [anon_sym_alignas] = ACTIONS(1304), - [anon_sym__Alignas] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [anon_sym___asm] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [287] = { - [sym_identifier] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token2] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___attribute] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym__Nonnull] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [anon_sym___asm] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [288] = { + [300] = { [sym_identifier] = ACTIONS(1344), [aux_sym_preproc_include_token1] = ACTIONS(1344), [aux_sym_preproc_def_token1] = ACTIONS(1344), @@ -46690,7 +47876,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [289] = { + [301] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___attribute] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [anon_sym__Nonnull] = ACTIONS(1348), + [anon_sym_alignas] = ACTIONS(1348), + [anon_sym__Alignas] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [anon_sym___asm] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [302] = { [sym_identifier] = ACTIONS(1352), [aux_sym_preproc_include_token1] = ACTIONS(1352), [aux_sym_preproc_def_token1] = ACTIONS(1352), @@ -46792,2052 +48080,623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym___extension__] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym___attribute] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym___inline] = ACTIONS(1364), - [anon_sym___inline__] = ACTIONS(1364), - [anon_sym___forceinline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym__Nonnull] = ACTIONS(1364), - [anon_sym_alignas] = ACTIONS(1364), - [anon_sym__Alignas] = 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___try] = ACTIONS(1364), - [anon_sym___leave] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym___alignof__] = ACTIONS(1364), - [anon_sym___alignof] = ACTIONS(1364), - [anon_sym__alignof] = ACTIONS(1364), - [anon_sym_alignof] = ACTIONS(1364), - [anon_sym__Alignof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [anon_sym___asm] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym___extension__] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym___attribute] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym__Nonnull] = ACTIONS(1360), - [anon_sym_alignas] = ACTIONS(1360), - [anon_sym__Alignas] = 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___try] = ACTIONS(1360), - [anon_sym___leave] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym___alignof__] = ACTIONS(1360), - [anon_sym___alignof] = ACTIONS(1360), - [anon_sym__alignof] = ACTIONS(1360), - [anon_sym_alignof] = ACTIONS(1360), - [anon_sym__Alignof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [anon_sym___asm] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym___extension__] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym___attribute] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym___inline] = ACTIONS(1372), - [anon_sym___inline__] = ACTIONS(1372), - [anon_sym___forceinline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym__Nonnull] = ACTIONS(1372), - [anon_sym_alignas] = ACTIONS(1372), - [anon_sym__Alignas] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym___try] = ACTIONS(1372), - [anon_sym___leave] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym___alignof__] = ACTIONS(1372), - [anon_sym___alignof] = ACTIONS(1372), - [anon_sym__alignof] = ACTIONS(1372), - [anon_sym_alignof] = ACTIONS(1372), - [anon_sym__Alignof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [anon_sym___asm] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [294] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [297] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym___extension__] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym___attribute] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym___inline] = ACTIONS(1340), - [anon_sym___inline__] = ACTIONS(1340), - [anon_sym___forceinline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1340), - [anon_sym__Alignas] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym___try] = ACTIONS(1340), - [anon_sym___leave] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym___alignof__] = ACTIONS(1340), - [anon_sym___alignof] = ACTIONS(1340), - [anon_sym__alignof] = ACTIONS(1340), - [anon_sym_alignof] = ACTIONS(1340), - [anon_sym__Alignof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [anon_sym___asm] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - }, - [298] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [299] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [300] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [301] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [302] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = 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___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, [303] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = 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___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___attribute] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [anon_sym__Nonnull] = ACTIONS(1356), + [anon_sym_alignas] = ACTIONS(1356), + [anon_sym__Alignas] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [anon_sym___asm] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [304] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = 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___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, [305] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym___attribute] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym___inline] = ACTIONS(1348), - [anon_sym___inline__] = ACTIONS(1348), - [anon_sym___forceinline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym__Nonnull] = ACTIONS(1348), - [anon_sym_alignas] = ACTIONS(1348), - [anon_sym__Alignas] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym___try] = ACTIONS(1348), - [anon_sym___leave] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym___alignof__] = ACTIONS(1348), - [anon_sym___alignof] = ACTIONS(1348), - [anon_sym__alignof] = ACTIONS(1348), - [anon_sym_alignof] = ACTIONS(1348), - [anon_sym__Alignof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [anon_sym___asm] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [sym_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), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym___attribute] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [anon_sym__Nonnull] = ACTIONS(1270), + [anon_sym_alignas] = ACTIONS(1270), + [anon_sym__Alignas] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [anon_sym___asm] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, [306] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [sym_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___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1286), + [anon_sym__Nonnull] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = 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___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(3), }, [307] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [sym_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___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1290), + [anon_sym__Nonnull] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = 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___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(3), }, [308] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, [309] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [310] = { [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), [sym_preproc_directive] = ACTIONS(1356), @@ -48863,6 +48722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1356), [anon_sym___vectorcall] = ACTIONS(1356), [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), [anon_sym_signed] = ACTIONS(1356), [anon_sym_unsigned] = ACTIONS(1356), [anon_sym_long] = ACTIONS(1356), @@ -48934,792 +48794,684 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, + [310] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___attribute] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [anon_sym__Nonnull] = ACTIONS(1364), + [anon_sym_alignas] = ACTIONS(1364), + [anon_sym__Alignas] = 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___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [anon_sym___asm] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + }, [311] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token2] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym___extension__] = ACTIONS(1368), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym___attribute] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym___inline] = ACTIONS(1368), - [anon_sym___inline__] = ACTIONS(1368), - [anon_sym___forceinline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym__Nonnull] = ACTIONS(1368), - [anon_sym_alignas] = ACTIONS(1368), - [anon_sym__Alignas] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym___try] = ACTIONS(1368), - [anon_sym___leave] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym___alignof__] = ACTIONS(1368), - [anon_sym___alignof] = ACTIONS(1368), - [anon_sym__alignof] = ACTIONS(1368), - [anon_sym_alignof] = ACTIONS(1368), - [anon_sym__Alignof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [anon_sym___asm] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___attribute] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym__Nonnull] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [anon_sym___asm] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [312] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym___extension__] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym___attribute] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym___inline] = ACTIONS(1376), - [anon_sym___inline__] = ACTIONS(1376), - [anon_sym___forceinline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym__Nonnull] = ACTIONS(1376), - [anon_sym_alignas] = ACTIONS(1376), - [anon_sym__Alignas] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym___try] = ACTIONS(1376), - [anon_sym___leave] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym___alignof__] = ACTIONS(1376), - [anon_sym___alignof] = ACTIONS(1376), - [anon_sym__alignof] = ACTIONS(1376), - [anon_sym_alignof] = ACTIONS(1376), - [anon_sym__Alignof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [anon_sym___asm] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [sym_expression] = STATE(699), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(675), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(675), + [sym_call_expression] = STATE(675), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(675), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(675), + [sym_initializer_list] = STATE(678), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(713), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_STAR_EQ] = ACTIONS(1380), + [anon_sym_SLASH_EQ] = ACTIONS(1380), + [anon_sym_PERCENT_EQ] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1380), + [anon_sym_DASH_EQ] = ACTIONS(1380), + [anon_sym_LT_LT_EQ] = ACTIONS(1380), + [anon_sym_GT_GT_EQ] = ACTIONS(1380), + [anon_sym_AMP_EQ] = ACTIONS(1380), + [anon_sym_CARET_EQ] = ACTIONS(1380), + [anon_sym_PIPE_EQ] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_DASH_GT] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [313] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(2003), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), + [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(370), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1103), + [anon_sym_default] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(406), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [314] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(1995), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), + [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(370), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1103), + [anon_sym_default] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(406), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [315] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(1276), + [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_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___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1274), + [anon_sym__Nonnull] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, [316] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym___attribute] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym__Nonnull] = ACTIONS(1344), - [anon_sym_alignas] = ACTIONS(1344), - [anon_sym__Alignas] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym___try] = ACTIONS(1344), - [anon_sym___leave] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [anon_sym___asm] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [317] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [318] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(682), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(682), - [sym_call_expression] = STATE(682), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(682), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(682), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(714), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_else_token1] = ACTIONS(1388), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_PERCENT_EQ] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_LT_LT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_AMP_EQ] = ACTIONS(1388), - [anon_sym_CARET_EQ] = ACTIONS(1388), - [anon_sym_PIPE_EQ] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1408), + [sym_attribute_declaration] = STATE(369), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_statement] = STATE(166), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1408), + [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(933), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -49730,8 +49482,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -49749,7 +49499,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___attribute] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym__Nonnull] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [anon_sym___asm] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [318] = { + [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___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1294), + [anon_sym__Nonnull] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + }, [319] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym___attribute] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [anon_sym__Nonnull] = ACTIONS(1262), + [anon_sym_alignas] = ACTIONS(1262), + [anon_sym__Alignas] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [anon_sym___asm] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + }, + [320] = { [ts_builtin_sym_end] = ACTIONS(1410), [sym_identifier] = ACTIONS(1412), [aux_sym_preproc_include_token1] = ACTIONS(1412), @@ -49825,876 +49875,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___alignof__] = ACTIONS(1412), [anon_sym___alignof] = ACTIONS(1412), [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [anon_sym___asm] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1410), - [anon_sym_u_SQUOTE] = ACTIONS(1410), - [anon_sym_U_SQUOTE] = ACTIONS(1410), - [anon_sym_u8_SQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_L_DQUOTE] = ACTIONS(1410), - [anon_sym_u_DQUOTE] = ACTIONS(1410), - [anon_sym_U_DQUOTE] = ACTIONS(1410), - [anon_sym_u8_DQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym___extension__] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym___attribute] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym___inline] = ACTIONS(1372), - [anon_sym___inline__] = ACTIONS(1372), - [anon_sym___forceinline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym__Nonnull] = ACTIONS(1372), - [anon_sym_alignas] = ACTIONS(1372), - [anon_sym__Alignas] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym___alignof__] = ACTIONS(1372), - [anon_sym___alignof] = ACTIONS(1372), - [anon_sym__alignof] = ACTIONS(1372), - [anon_sym_alignof] = ACTIONS(1372), - [anon_sym__Alignof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [anon_sym___asm] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), - [sym_comment] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [322] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(253), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), - [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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(378), - [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___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym___extension__] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym___attribute] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym__Nonnull] = ACTIONS(1360), - [anon_sym_alignas] = ACTIONS(1360), - [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1360), - [anon_sym___alignof] = ACTIONS(1360), - [anon_sym__alignof] = ACTIONS(1360), - [anon_sym_alignof] = ACTIONS(1360), - [anon_sym__Alignof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [anon_sym___asm] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - }, - [327] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(244), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), - [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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(378), - [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___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [anon_sym___asm] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(149), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), + [321] = { + [sym_attribute_declaration] = STATE(369), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_statement] = STATE(155), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1408), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50702,9 +49952,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(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(61), [anon_sym_switch] = ACTIONS(63), @@ -50717,8 +49967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -50749,552 +49999,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym___extension__] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym___attribute] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym___inline] = ACTIONS(1376), - [anon_sym___inline__] = ACTIONS(1376), - [anon_sym___forceinline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym__Nonnull] = ACTIONS(1376), - [anon_sym_alignas] = ACTIONS(1376), - [anon_sym__Alignas] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym___alignof__] = ACTIONS(1376), - [anon_sym___alignof] = ACTIONS(1376), - [anon_sym__alignof] = ACTIONS(1376), - [anon_sym_alignof] = ACTIONS(1376), - [anon_sym__Alignof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [anon_sym___asm] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(1842), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [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(370), + [322] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [333] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(167), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_goto] = ACTIONS(1481), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1487), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___attribute] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [anon_sym__Nonnull] = ACTIONS(1416), + [anon_sym_alignas] = ACTIONS(1416), + [anon_sym__Alignas] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [anon_sym___asm] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(224), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), + [323] = { + [sym_attribute_declaration] = STATE(369), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_statement] = STATE(158), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1408), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51302,9 +50152,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(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(61), [anon_sym_switch] = ACTIONS(63), @@ -51317,8 +50167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -51349,207 +50199,807 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [324] = { + [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___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___attribute] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym__Nonnull] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [anon_sym___asm] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [325] = { + [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___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___attribute] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym__Nonnull] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [anon_sym___asm] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [337] = { + [326] = { + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___attribute] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym__Nonnull] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [anon_sym___asm] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___attribute] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym__Nonnull] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [anon_sym___asm] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___attribute] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym__Nonnull] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [anon_sym___asm] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___attribute] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [anon_sym__Nonnull] = ACTIONS(1364), + [anon_sym_alignas] = ACTIONS(1364), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [anon_sym___asm] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___attribute] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym__Nonnull] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [anon_sym___asm] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [sym_comment] = ACTIONS(3), + }, + [332] = { [ts_builtin_sym_end] = ACTIONS(1342), [sym_identifier] = ACTIONS(1340), [aux_sym_preproc_include_token1] = ACTIONS(1340), @@ -51649,152 +51099,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1523), - [sym_identifier] = ACTIONS(1525), - [aux_sym_preproc_include_token1] = ACTIONS(1525), - [aux_sym_preproc_def_token1] = ACTIONS(1525), - [aux_sym_preproc_if_token1] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1525), - [sym_preproc_directive] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym___extension__] = ACTIONS(1525), - [anon_sym_typedef] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1525), - [anon_sym___attribute__] = ACTIONS(1525), - [anon_sym___attribute] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1523), - [anon_sym___declspec] = ACTIONS(1525), - [anon_sym___cdecl] = ACTIONS(1525), - [anon_sym___clrcall] = ACTIONS(1525), - [anon_sym___stdcall] = ACTIONS(1525), - [anon_sym___fastcall] = ACTIONS(1525), - [anon_sym___thiscall] = ACTIONS(1525), - [anon_sym___vectorcall] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_signed] = ACTIONS(1525), - [anon_sym_unsigned] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_auto] = ACTIONS(1525), - [anon_sym_register] = ACTIONS(1525), - [anon_sym_inline] = ACTIONS(1525), - [anon_sym___inline] = ACTIONS(1525), - [anon_sym___inline__] = ACTIONS(1525), - [anon_sym___forceinline] = ACTIONS(1525), - [anon_sym_thread_local] = ACTIONS(1525), - [anon_sym___thread] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_constexpr] = ACTIONS(1525), - [anon_sym_volatile] = ACTIONS(1525), - [anon_sym_restrict] = ACTIONS(1525), - [anon_sym___restrict__] = ACTIONS(1525), - [anon_sym__Atomic] = ACTIONS(1525), - [anon_sym__Noreturn] = ACTIONS(1525), - [anon_sym_noreturn] = ACTIONS(1525), - [anon_sym__Nonnull] = ACTIONS(1525), - [anon_sym_alignas] = ACTIONS(1525), - [anon_sym__Alignas] = ACTIONS(1525), - [sym_primitive_type] = ACTIONS(1525), - [anon_sym_enum] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1525), - [anon_sym_union] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_case] = ACTIONS(1525), - [anon_sym_default] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_goto] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [anon_sym___alignof__] = ACTIONS(1525), - [anon_sym___alignof] = ACTIONS(1525), - [anon_sym__alignof] = ACTIONS(1525), - [anon_sym_alignof] = ACTIONS(1525), - [anon_sym__Alignof] = ACTIONS(1525), - [anon_sym_offsetof] = ACTIONS(1525), - [anon_sym__Generic] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [anon_sym___asm] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1523), - [anon_sym_L_SQUOTE] = ACTIONS(1523), - [anon_sym_u_SQUOTE] = ACTIONS(1523), - [anon_sym_U_SQUOTE] = ACTIONS(1523), - [anon_sym_u8_SQUOTE] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_L_DQUOTE] = ACTIONS(1523), - [anon_sym_u_DQUOTE] = ACTIONS(1523), - [anon_sym_U_DQUOTE] = ACTIONS(1523), - [anon_sym_u8_DQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [sym_true] = ACTIONS(1525), - [sym_false] = ACTIONS(1525), - [anon_sym_NULL] = ACTIONS(1525), - [anon_sym_nullptr] = ACTIONS(1525), + [333] = { + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(236), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1418), + [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(370), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(378), + [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___try] = ACTIONS(404), + [anon_sym___leave] = ACTIONS(406), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym___attribute] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [anon_sym__Nonnull] = ACTIONS(1344), + [anon_sym_alignas] = ACTIONS(1344), + [anon_sym__Alignas] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [anon_sym___asm] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___attribute] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [anon_sym__Nonnull] = ACTIONS(1348), + [anon_sym_alignas] = ACTIONS(1348), + [anon_sym__Alignas] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [anon_sym___asm] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___attribute] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [anon_sym__Nonnull] = ACTIONS(1352), + [anon_sym_alignas] = ACTIONS(1352), + [anon_sym__Alignas] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [anon_sym___asm] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(172), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), + [337] = { + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(1888), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51802,23 +51552,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1095), [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), + [anon_sym_case] = ACTIONS(1103), + [anon_sym_default] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1097), [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), + [anon_sym_for] = ACTIONS(1099), [anon_sym_return] = ACTIONS(75), [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(406), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -51849,152 +51599,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym___extension__] = ACTIONS(1529), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym___attribute] = ACTIONS(1529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1527), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_auto] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym___inline] = ACTIONS(1529), - [anon_sym___inline__] = ACTIONS(1529), - [anon_sym___forceinline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym___thread] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym___restrict__] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym__Noreturn] = ACTIONS(1529), - [anon_sym_noreturn] = ACTIONS(1529), - [anon_sym__Nonnull] = ACTIONS(1529), - [anon_sym_alignas] = ACTIONS(1529), - [anon_sym__Alignas] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1529), - [anon_sym___alignof__] = ACTIONS(1529), - [anon_sym___alignof] = ACTIONS(1529), - [anon_sym__alignof] = ACTIONS(1529), - [anon_sym_alignof] = ACTIONS(1529), - [anon_sym__Alignof] = ACTIONS(1529), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1529), - [anon_sym___asm__] = ACTIONS(1529), - [anon_sym___asm] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1527), - [anon_sym_u_SQUOTE] = ACTIONS(1527), - [anon_sym_U_SQUOTE] = ACTIONS(1527), - [anon_sym_u8_SQUOTE] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_L_DQUOTE] = ACTIONS(1527), - [anon_sym_u_DQUOTE] = ACTIONS(1527), - [anon_sym_U_DQUOTE] = ACTIONS(1527), - [anon_sym_u8_DQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [anon_sym_NULL] = ACTIONS(1529), - [anon_sym_nullptr] = ACTIONS(1529), + [338] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(167), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1477), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1489), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1495), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym___asm__] = ACTIONS(1501), + [anon_sym___asm] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(160), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), + [339] = { + [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___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1282), + [anon_sym__Nonnull] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_attribute_declaration] = STATE(369), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_statement] = STATE(146), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1408), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52002,9 +51852,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(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(61), [anon_sym_switch] = ACTIONS(63), @@ -52017,8 +51867,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -52049,752 +51899,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [341] = { + [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___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1286), + [anon_sym__Nonnull] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), + [342] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), [sym_statement] = STATE(167), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1414), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1418), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52803,8 +52053,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(378), [anon_sym_if] = ACTIONS(382), [anon_sym_switch] = ACTIONS(384), @@ -52849,52 +52099,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), + [343] = { + [sym_attribute_declaration] = STATE(367), + [sym_compound_statement] = STATE(81), + [sym_attributed_statement] = STATE(81), [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1519), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52903,8 +52153,8 @@ 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(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(133), [anon_sym_if] = ACTIONS(135), [anon_sym_switch] = ACTIONS(137), @@ -52949,52 +52199,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(82), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), + [344] = { + [sym_attribute_declaration] = STATE(367), + [sym_compound_statement] = STATE(81), + [sym_attributed_statement] = STATE(81), + [sym_statement] = STATE(90), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1519), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53003,8 +52253,8 @@ 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(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(133), [anon_sym_if] = ACTIONS(135), [anon_sym_switch] = ACTIONS(137), @@ -53049,152 +52299,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_attribute_declaration] = STATE(352), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), + [345] = { + [sym_attribute_declaration] = STATE(345), + [sym_compound_statement] = STATE(81), + [sym_attributed_statement] = STATE(81), [sym_statement] = STATE(114), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1572), - [anon_sym___try] = ACTIONS(1575), - [anon_sym___leave] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_goto] = ACTIONS(1560), + [anon_sym___try] = ACTIONS(1563), + [anon_sym___leave] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1489), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1495), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym___asm__] = ACTIONS(1501), + [anon_sym___asm] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(97), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), + [346] = { + [sym_attribute_declaration] = STATE(367), + [sym_compound_statement] = STATE(81), + [sym_attributed_statement] = STATE(81), + [sym_statement] = STATE(85), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1519), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53203,8 +52453,8 @@ 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(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(133), [anon_sym_if] = ACTIONS(135), [anon_sym_switch] = ACTIONS(137), @@ -53249,52 +52499,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(99), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), + [347] = { + [sym_attribute_declaration] = STATE(367), + [sym_compound_statement] = STATE(81), + [sym_attributed_statement] = STATE(81), + [sym_statement] = STATE(92), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1519), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53303,8 +52553,8 @@ 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(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(133), [anon_sym_if] = ACTIONS(135), [anon_sym_switch] = ACTIONS(137), @@ -53349,52 +52599,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(224), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), + [348] = { + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(398), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53403,8 +52653,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(1095), [anon_sym_switch] = ACTIONS(63), @@ -53449,252 +52699,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_attribute_declaration] = STATE(356), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_goto] = ACTIONS(1617), - [anon_sym___try] = ACTIONS(1620), - [anon_sym___leave] = ACTIONS(1487), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [349] = { + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(166), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), + [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(370), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1103), + [anon_sym_default] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(406), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym___attribute] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym__Nonnull] = ACTIONS(1344), - [anon_sym_alignas] = ACTIONS(1344), - [anon_sym__Alignas] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [anon_sym___asm] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [350] = { + [sym_attribute_declaration] = STATE(350), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(252), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(350), + [sym_identifier] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_switch] = ACTIONS(1578), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_goto] = ACTIONS(1605), + [anon_sym___try] = ACTIONS(1608), + [anon_sym___leave] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1489), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1495), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym___asm__] = ACTIONS(1501), + [anon_sym___asm] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(172), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), + [351] = { + [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___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1290), + [anon_sym__Nonnull] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(155), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53703,8 +53053,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(1095), [anon_sym_switch] = ACTIONS(63), @@ -53749,52 +53099,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(160), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), + [353] = { + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(158), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53803,8 +53153,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(1095), [anon_sym_switch] = ACTIONS(63), @@ -53849,152 +53199,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [354] = { + [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___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1278), + [anon_sym__Nonnull] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_attribute_declaration] = STATE(356), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(1422), + [355] = { + [sym_attribute_declaration] = STATE(350), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(252), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(350), + [sym_identifier] = ACTIONS(1402), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54003,8 +53353,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(1095), [anon_sym_switch] = ACTIONS(63), @@ -54049,152 +53399,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1626), - [aux_sym_preproc_def_token1] = ACTIONS(1626), - [aux_sym_preproc_if_token1] = ACTIONS(1626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1626), - [sym_preproc_directive] = ACTIONS(1626), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym___extension__] = ACTIONS(1626), - [anon_sym_typedef] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym___attribute__] = ACTIONS(1626), - [anon_sym___attribute] = ACTIONS(1626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1626), - [anon_sym___cdecl] = ACTIONS(1626), - [anon_sym___clrcall] = ACTIONS(1626), - [anon_sym___stdcall] = ACTIONS(1626), - [anon_sym___fastcall] = ACTIONS(1626), - [anon_sym___thiscall] = ACTIONS(1626), - [anon_sym___vectorcall] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_signed] = ACTIONS(1626), - [anon_sym_unsigned] = ACTIONS(1626), - [anon_sym_long] = ACTIONS(1626), - [anon_sym_short] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_auto] = ACTIONS(1626), - [anon_sym_register] = ACTIONS(1626), - [anon_sym_inline] = ACTIONS(1626), - [anon_sym___inline] = ACTIONS(1626), - [anon_sym___inline__] = ACTIONS(1626), - [anon_sym___forceinline] = ACTIONS(1626), - [anon_sym_thread_local] = ACTIONS(1626), - [anon_sym___thread] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_constexpr] = ACTIONS(1626), - [anon_sym_volatile] = ACTIONS(1626), - [anon_sym_restrict] = ACTIONS(1626), - [anon_sym___restrict__] = ACTIONS(1626), - [anon_sym__Atomic] = ACTIONS(1626), - [anon_sym__Noreturn] = ACTIONS(1626), - [anon_sym_noreturn] = ACTIONS(1626), - [anon_sym__Nonnull] = ACTIONS(1626), - [anon_sym_alignas] = ACTIONS(1626), - [anon_sym__Alignas] = ACTIONS(1626), - [sym_primitive_type] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_case] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_goto] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1626), - [anon_sym___alignof] = ACTIONS(1626), - [anon_sym__alignof] = ACTIONS(1626), - [anon_sym_alignof] = ACTIONS(1626), - [anon_sym__Alignof] = ACTIONS(1626), - [anon_sym_offsetof] = ACTIONS(1626), - [anon_sym__Generic] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1626), - [anon_sym___asm__] = ACTIONS(1626), - [anon_sym___asm] = ACTIONS(1626), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1623), - [anon_sym_u_SQUOTE] = ACTIONS(1623), - [anon_sym_U_SQUOTE] = ACTIONS(1623), - [anon_sym_u8_SQUOTE] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_L_DQUOTE] = ACTIONS(1623), - [anon_sym_u_DQUOTE] = ACTIONS(1623), - [anon_sym_U_DQUOTE] = ACTIONS(1623), - [anon_sym_u8_DQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_true] = ACTIONS(1626), - [sym_false] = ACTIONS(1626), - [anon_sym_NULL] = ACTIONS(1626), - [anon_sym_nullptr] = ACTIONS(1626), + [356] = { + [ts_builtin_sym_end] = ACTIONS(1611), + [sym_identifier] = ACTIONS(1614), + [aux_sym_preproc_include_token1] = ACTIONS(1614), + [aux_sym_preproc_def_token1] = ACTIONS(1614), + [aux_sym_preproc_if_token1] = ACTIONS(1614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1614), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1614), + [sym_preproc_directive] = ACTIONS(1614), + [anon_sym_LPAREN2] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym___extension__] = ACTIONS(1614), + [anon_sym_typedef] = ACTIONS(1614), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym___attribute__] = ACTIONS(1614), + [anon_sym___attribute] = ACTIONS(1614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), + [anon_sym___declspec] = ACTIONS(1614), + [anon_sym___cdecl] = ACTIONS(1614), + [anon_sym___clrcall] = ACTIONS(1614), + [anon_sym___stdcall] = ACTIONS(1614), + [anon_sym___fastcall] = ACTIONS(1614), + [anon_sym___thiscall] = ACTIONS(1614), + [anon_sym___vectorcall] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_signed] = ACTIONS(1614), + [anon_sym_unsigned] = ACTIONS(1614), + [anon_sym_long] = ACTIONS(1614), + [anon_sym_short] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_auto] = ACTIONS(1614), + [anon_sym_register] = ACTIONS(1614), + [anon_sym_inline] = ACTIONS(1614), + [anon_sym___inline] = ACTIONS(1614), + [anon_sym___inline__] = ACTIONS(1614), + [anon_sym___forceinline] = ACTIONS(1614), + [anon_sym_thread_local] = ACTIONS(1614), + [anon_sym___thread] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_constexpr] = ACTIONS(1614), + [anon_sym_volatile] = ACTIONS(1614), + [anon_sym_restrict] = ACTIONS(1614), + [anon_sym___restrict__] = ACTIONS(1614), + [anon_sym__Atomic] = ACTIONS(1614), + [anon_sym__Noreturn] = ACTIONS(1614), + [anon_sym_noreturn] = ACTIONS(1614), + [anon_sym__Nonnull] = ACTIONS(1614), + [anon_sym_alignas] = ACTIONS(1614), + [anon_sym__Alignas] = ACTIONS(1614), + [sym_primitive_type] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_switch] = ACTIONS(1614), + [anon_sym_case] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_do] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_goto] = ACTIONS(1614), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_sizeof] = ACTIONS(1614), + [anon_sym___alignof__] = ACTIONS(1614), + [anon_sym___alignof] = ACTIONS(1614), + [anon_sym__alignof] = ACTIONS(1614), + [anon_sym_alignof] = ACTIONS(1614), + [anon_sym__Alignof] = ACTIONS(1614), + [anon_sym_offsetof] = ACTIONS(1614), + [anon_sym__Generic] = ACTIONS(1614), + [anon_sym_asm] = ACTIONS(1614), + [anon_sym___asm__] = ACTIONS(1614), + [anon_sym___asm] = ACTIONS(1614), + [sym_number_literal] = ACTIONS(1611), + [anon_sym_L_SQUOTE] = ACTIONS(1611), + [anon_sym_u_SQUOTE] = ACTIONS(1611), + [anon_sym_U_SQUOTE] = ACTIONS(1611), + [anon_sym_u8_SQUOTE] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_L_DQUOTE] = ACTIONS(1611), + [anon_sym_u_DQUOTE] = ACTIONS(1611), + [anon_sym_U_DQUOTE] = ACTIONS(1611), + [anon_sym_u8_DQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym_true] = ACTIONS(1614), + [sym_false] = ACTIONS(1614), + [anon_sym_NULL] = ACTIONS(1614), + [anon_sym_nullptr] = ACTIONS(1614), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), + [357] = { + [sym_attribute_declaration] = STATE(371), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), [sym_statement] = STATE(148), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1617), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54202,23 +53552,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -54249,52 +53599,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [364] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(193), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), + [358] = { + [sym_attribute_declaration] = STATE(371), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_statement] = STATE(149), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1617), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54302,23 +53652,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -54349,352 +53699,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(185), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1643), - [anon_sym_case] = ACTIONS(1646), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1670), - [anon_sym___try] = ACTIONS(1673), - [anon_sym___leave] = ACTIONS(1676), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [359] = { + [sym_attribute_declaration] = STATE(359), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_statement] = STATE(183), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(359), + [sym_identifier] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_switch] = ACTIONS(1631), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1640), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_goto] = ACTIONS(1658), + [anon_sym___try] = ACTIONS(1661), + [anon_sym___leave] = ACTIONS(1664), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1489), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1495), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym___asm__] = ACTIONS(1501), + [anon_sym___asm] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_case] = ACTIONS(1688), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_goto] = ACTIONS(1617), - [anon_sym___try] = ACTIONS(1700), - [anon_sym___leave] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [360] = { + [sym_attribute_declaration] = STATE(360), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_statement] = STATE(252), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1578), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_goto] = ACTIONS(1605), + [anon_sym___try] = ACTIONS(1688), + [anon_sym___leave] = ACTIONS(1691), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1489), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1495), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym___asm__] = ACTIONS(1501), + [anon_sym___asm] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym___attribute] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym__Nonnull] = ACTIONS(1352), - [anon_sym_alignas] = ACTIONS(1352), - [anon_sym__Alignas] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [anon_sym___asm] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [361] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___attribute] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [anon_sym__Nonnull] = ACTIONS(1368), + [anon_sym_alignas] = ACTIONS(1368), + [anon_sym__Alignas] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [anon_sym___asm] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(150), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), + [362] = { + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(147), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1418), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54703,8 +54053,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(378), [anon_sym_if] = ACTIONS(382), [anon_sym_switch] = ACTIONS(384), @@ -54749,152 +54099,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym___attribute] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym__Nonnull] = ACTIONS(1356), - [anon_sym_alignas] = ACTIONS(1356), - [anon_sym__Alignas] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [anon_sym___asm] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [363] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(205), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), + [364] = { + [sym_attribute_declaration] = STATE(371), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_statement] = STATE(203), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1617), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54902,23 +54252,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -54949,52 +54299,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(256), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), + [365] = { + [sym_attribute_declaration] = STATE(371), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_statement] = STATE(254), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1617), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55002,23 +54352,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -55049,52 +54399,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(177), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), + [366] = { + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(198), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1418), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55103,8 +54453,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(378), [anon_sym_if] = ACTIONS(382), [anon_sym_switch] = ACTIONS(384), @@ -55149,52 +54499,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_attribute_declaration] = STATE(352), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), + [367] = { + [sym_attribute_declaration] = STATE(345), + [sym_compound_statement] = STATE(81), + [sym_attributed_statement] = STATE(81), [sym_statement] = STATE(114), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1531), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1055), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1519), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55203,8 +54553,8 @@ 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(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(133), [anon_sym_if] = ACTIONS(135), [anon_sym_switch] = ACTIONS(137), @@ -55249,152 +54599,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym___extension__] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym___attribute] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym___inline] = ACTIONS(1364), - [anon_sym___inline__] = ACTIONS(1364), - [anon_sym___forceinline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym__Nonnull] = ACTIONS(1364), - [anon_sym_alignas] = ACTIONS(1364), - [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1364), - [anon_sym___alignof] = ACTIONS(1364), - [anon_sym__alignof] = ACTIONS(1364), - [anon_sym_alignof] = ACTIONS(1364), - [anon_sym__Alignof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [anon_sym___asm] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [368] = { + [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___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(1266), + [anon_sym__Nonnull] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = 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___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = 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), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1420), + [369] = { + [sym_attribute_declaration] = STATE(360), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_statement] = STATE(252), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym_expression] = STATE(1035), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1977), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(1408), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55402,9 +54752,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(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(61), [anon_sym_switch] = ACTIONS(63), @@ -55417,308 +54767,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [376] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(2011), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym___attribute] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym___inline] = ACTIONS(1348), - [anon_sym___inline__] = ACTIONS(1348), - [anon_sym___forceinline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym__Nonnull] = ACTIONS(1348), - [anon_sym_alignas] = ACTIONS(1348), - [anon_sym__Alignas] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym___alignof__] = ACTIONS(1348), - [anon_sym___alignof] = ACTIONS(1348), - [anon_sym__alignof] = ACTIONS(1348), - [anon_sym_alignof] = ACTIONS(1348), - [anon_sym__Alignof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [anon_sym___asm] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), - [sym_comment] = ACTIONS(3), - }, - [378] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(185), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1629), - [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(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), + [anon_sym___try] = ACTIONS(935), + [anon_sym___leave] = ACTIONS(937), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -55749,52 +54799,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(1988), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), + [370] = { + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_identifier] = ACTIONS(1696), + [aux_sym_preproc_include_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1696), + [aux_sym_preproc_if_token1] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1696), + [sym_preproc_directive] = ACTIONS(1696), + [anon_sym_LPAREN2] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym___extension__] = ACTIONS(1696), + [anon_sym_typedef] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym___attribute__] = ACTIONS(1696), + [anon_sym___attribute] = ACTIONS(1696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1694), + [anon_sym___declspec] = ACTIONS(1696), + [anon_sym___cdecl] = ACTIONS(1696), + [anon_sym___clrcall] = ACTIONS(1696), + [anon_sym___stdcall] = ACTIONS(1696), + [anon_sym___fastcall] = ACTIONS(1696), + [anon_sym___thiscall] = ACTIONS(1696), + [anon_sym___vectorcall] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_signed] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1696), + [anon_sym_long] = ACTIONS(1696), + [anon_sym_short] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_auto] = ACTIONS(1696), + [anon_sym_register] = ACTIONS(1696), + [anon_sym_inline] = ACTIONS(1696), + [anon_sym___inline] = ACTIONS(1696), + [anon_sym___inline__] = ACTIONS(1696), + [anon_sym___forceinline] = ACTIONS(1696), + [anon_sym_thread_local] = ACTIONS(1696), + [anon_sym___thread] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_constexpr] = ACTIONS(1696), + [anon_sym_volatile] = ACTIONS(1696), + [anon_sym_restrict] = ACTIONS(1696), + [anon_sym___restrict__] = ACTIONS(1696), + [anon_sym__Atomic] = ACTIONS(1696), + [anon_sym__Noreturn] = ACTIONS(1696), + [anon_sym_noreturn] = ACTIONS(1696), + [anon_sym__Nonnull] = ACTIONS(1696), + [anon_sym_alignas] = ACTIONS(1696), + [anon_sym__Alignas] = ACTIONS(1696), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1696), + [anon_sym_case] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_goto] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_sizeof] = ACTIONS(1696), + [anon_sym___alignof__] = ACTIONS(1696), + [anon_sym___alignof] = ACTIONS(1696), + [anon_sym__alignof] = ACTIONS(1696), + [anon_sym_alignof] = ACTIONS(1696), + [anon_sym__Alignof] = ACTIONS(1696), + [anon_sym_offsetof] = ACTIONS(1696), + [anon_sym__Generic] = ACTIONS(1696), + [anon_sym_asm] = ACTIONS(1696), + [anon_sym___asm__] = ACTIONS(1696), + [anon_sym___asm] = ACTIONS(1696), + [sym_number_literal] = ACTIONS(1694), + [anon_sym_L_SQUOTE] = ACTIONS(1694), + [anon_sym_u_SQUOTE] = ACTIONS(1694), + [anon_sym_U_SQUOTE] = ACTIONS(1694), + [anon_sym_u8_SQUOTE] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_L_DQUOTE] = ACTIONS(1694), + [anon_sym_u_DQUOTE] = ACTIONS(1694), + [anon_sym_U_DQUOTE] = ACTIONS(1694), + [anon_sym_u8_DQUOTE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_NULL] = ACTIONS(1696), + [anon_sym_nullptr] = ACTIONS(1696), + [sym_comment] = ACTIONS(3), + }, + [371] = { + [sym_attribute_declaration] = STATE(359), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_statement] = STATE(183), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym_expression] = STATE(1028), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1804), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(359), + [sym_identifier] = ACTIONS(1617), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55802,23 +54952,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_if] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_while] = ACTIONS(440), + [anon_sym_do] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_goto] = ACTIONS(452), + [anon_sym___try] = ACTIONS(454), + [anon_sym___leave] = ACTIONS(456), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -55849,52 +54999,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(2003), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), + [372] = { + [sym_attribute_declaration] = STATE(355), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(1980), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1402), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55903,8 +55053,8 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_if] = ACTIONS(1095), [anon_sym_switch] = ACTIONS(63), @@ -55949,52 +55099,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(406), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), + [373] = { + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_statement] = STATE(234), + [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_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym_expression] = STATE(1056), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1942), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1418), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56003,21 +55153,21 @@ 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(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(378), + [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___try] = ACTIONS(404), [anon_sym___leave] = ACTIONS(406), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), @@ -56049,32 +55199,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), + [374] = { + [sym_expression] = STATE(980), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1698), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56082,41 +55232,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), + [anon_sym___extension__] = ACTIONS(1701), + [anon_sym_typedef] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym___attribute__] = ACTIONS(1706), + [anon_sym___attribute] = ACTIONS(1706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym___inline] = ACTIONS(1706), + [anon_sym___inline__] = ACTIONS(1706), + [anon_sym___forceinline] = ACTIONS(1706), + [anon_sym_thread_local] = ACTIONS(1706), + [anon_sym___thread] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_constexpr] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym___restrict__] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym__Noreturn] = ACTIONS(1706), + [anon_sym_noreturn] = ACTIONS(1706), + [anon_sym__Nonnull] = ACTIONS(1706), + [anon_sym_alignas] = ACTIONS(1706), + [anon_sym__Alignas] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -56147,32 +55297,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), + [375] = { + [sym_expression] = STATE(980), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1698), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56180,41 +55330,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1718), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), + [anon_sym___extension__] = ACTIONS(1701), + [anon_sym_typedef] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym___attribute__] = ACTIONS(1706), + [anon_sym___attribute] = ACTIONS(1706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym___inline] = ACTIONS(1706), + [anon_sym___inline__] = ACTIONS(1706), + [anon_sym___forceinline] = ACTIONS(1706), + [anon_sym_thread_local] = ACTIONS(1706), + [anon_sym___thread] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_constexpr] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym___restrict__] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym__Noreturn] = ACTIONS(1706), + [anon_sym_noreturn] = ACTIONS(1706), + [anon_sym__Nonnull] = ACTIONS(1706), + [anon_sym_alignas] = ACTIONS(1706), + [anon_sym__Alignas] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -56245,32 +55395,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), + [376] = { + [sym_expression] = STATE(980), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1698), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56278,41 +55428,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), + [anon_sym___extension__] = ACTIONS(1701), + [anon_sym_typedef] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym___attribute__] = ACTIONS(1706), + [anon_sym___attribute] = ACTIONS(1706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym___inline] = ACTIONS(1706), + [anon_sym___inline__] = ACTIONS(1706), + [anon_sym___forceinline] = ACTIONS(1706), + [anon_sym_thread_local] = ACTIONS(1706), + [anon_sym___thread] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_constexpr] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym___restrict__] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym__Noreturn] = ACTIONS(1706), + [anon_sym_noreturn] = ACTIONS(1706), + [anon_sym__Nonnull] = ACTIONS(1706), + [anon_sym_alignas] = ACTIONS(1706), + [anon_sym__Alignas] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -56343,32 +55493,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), + [377] = { + [sym_expression] = STATE(980), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1698), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56376,41 +55526,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), + [anon_sym___extension__] = ACTIONS(1701), + [anon_sym_typedef] = ACTIONS(1714), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym___attribute__] = ACTIONS(1706), + [anon_sym___attribute] = ACTIONS(1706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym___inline] = ACTIONS(1706), + [anon_sym___inline__] = ACTIONS(1706), + [anon_sym___forceinline] = ACTIONS(1706), + [anon_sym_thread_local] = ACTIONS(1706), + [anon_sym___thread] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_constexpr] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym___restrict__] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym__Noreturn] = ACTIONS(1706), + [anon_sym_noreturn] = ACTIONS(1706), + [anon_sym__Nonnull] = ACTIONS(1706), + [anon_sym_alignas] = ACTIONS(1706), + [anon_sym__Alignas] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -56441,45 +55591,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1816), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [378] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1856), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56489,10 +55639,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -56505,7 +55655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -56538,45 +55688,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1875), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [379] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1975), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56586,10 +55736,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -56602,7 +55752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -56635,32 +55785,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), + [380] = { + [sym_expression] = STATE(980), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1698), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56668,40 +55818,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), + [anon_sym___extension__] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym___attribute__] = ACTIONS(1706), + [anon_sym___attribute] = ACTIONS(1706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym___inline] = ACTIONS(1706), + [anon_sym___inline__] = ACTIONS(1706), + [anon_sym___forceinline] = ACTIONS(1706), + [anon_sym_thread_local] = ACTIONS(1706), + [anon_sym___thread] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_constexpr] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym___restrict__] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym__Noreturn] = ACTIONS(1706), + [anon_sym_noreturn] = ACTIONS(1706), + [anon_sym__Nonnull] = ACTIONS(1706), + [anon_sym_alignas] = ACTIONS(1706), + [anon_sym__Alignas] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -56732,45 +55882,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1994), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [381] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1779), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56780,10 +55930,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -56796,7 +55946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -56829,74 +55979,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_expression] = STATE(896), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(682), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(682), - [sym_call_expression] = STATE(682), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(682), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(682), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_PERCENT_EQ] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_LT_LT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_AMP_EQ] = ACTIONS(1388), - [anon_sym_CARET_EQ] = ACTIONS(1388), - [anon_sym_PIPE_EQ] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1736), + [382] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1996), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -56907,8 +56059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -56926,76 +56076,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1888), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [383] = { + [sym_expression] = STATE(889), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(675), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(675), + [sym_call_expression] = STATE(675), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(675), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(675), + [sym_initializer_list] = STATE(678), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_STAR_EQ] = ACTIONS(1380), + [anon_sym_SLASH_EQ] = ACTIONS(1380), + [anon_sym_PERCENT_EQ] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1380), + [anon_sym_DASH_EQ] = ACTIONS(1380), + [anon_sym_LT_LT_EQ] = ACTIONS(1380), + [anon_sym_GT_GT_EQ] = ACTIONS(1380), + [anon_sym_AMP_EQ] = ACTIONS(1380), + [anon_sym_CARET_EQ] = ACTIONS(1380), + [anon_sym_PIPE_EQ] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1728), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -57006,6 +56154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_DASH_GT] = ACTIONS(1380), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -57023,45 +56173,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1983), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [384] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1793), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57071,10 +56221,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57087,7 +56237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57120,45 +56270,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1856), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [385] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1940), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57168,10 +56318,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57184,7 +56334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57217,45 +56367,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1790), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [386] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1930), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57265,10 +56415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57281,7 +56431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57314,45 +56464,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(2007), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [387] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1887), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57362,10 +56512,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57378,7 +56528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57411,45 +56561,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1832), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [388] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1768), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57459,10 +56609,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57475,7 +56625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57508,45 +56658,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1928), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [389] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1775), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57556,10 +56706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57572,7 +56722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57605,45 +56755,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1789), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [390] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1825), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57653,10 +56803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57669,7 +56819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57702,45 +56852,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [399] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1839), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [391] = { + [sym_compound_statement] = STATE(1901), + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1862), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57750,10 +56900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57766,7 +56916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57799,43 +56949,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1105), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1922), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [392] = { + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1084), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1885), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57844,10 +56994,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57860,7 +57010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57893,43 +57043,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1107), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1938), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), + [393] = { + [sym_type_qualifier] = STATE(1006), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(1077), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_expression] = STATE(1080), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_type_descriptor] = STATE(1776), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__type_definition_type_repeat1] = STATE(1006), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57938,10 +57088,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1718), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), [anon_sym_const] = ACTIONS(49), [anon_sym_constexpr] = ACTIONS(49), [anon_sym_volatile] = ACTIONS(49), @@ -57954,7 +57104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1720), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), [anon_sym_DASH_DASH] = ACTIONS(83), @@ -57987,253 +57137,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_identifier] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1740), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym___extension__] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1740), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1740), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [anon_sym___inline] = ACTIONS(1738), - [anon_sym___inline__] = ACTIONS(1738), - [anon_sym___forceinline] = ACTIONS(1738), - [anon_sym_thread_local] = ACTIONS(1738), - [anon_sym___thread] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_constexpr] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym___restrict__] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym__Noreturn] = ACTIONS(1738), - [anon_sym_noreturn] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym_alignas] = ACTIONS(1738), - [anon_sym__Alignas] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_COLON] = ACTIONS(1740), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym___try] = ACTIONS(1738), - [anon_sym___leave] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [anon_sym___alignof__] = ACTIONS(1738), - [anon_sym___alignof] = ACTIONS(1738), - [anon_sym__alignof] = ACTIONS(1738), - [anon_sym_alignof] = ACTIONS(1738), - [anon_sym__Alignof] = ACTIONS(1738), - [anon_sym_offsetof] = ACTIONS(1738), - [anon_sym__Generic] = ACTIONS(1738), - [anon_sym_asm] = ACTIONS(1738), - [anon_sym___asm__] = ACTIONS(1738), - [anon_sym___asm] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [anon_sym_NULL] = ACTIONS(1738), - [anon_sym_nullptr] = ACTIONS(1738), + [394] = { + [sym_identifier] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_LPAREN2] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym___extension__] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym___attribute__] = ACTIONS(1730), + [anon_sym___attribute] = ACTIONS(1730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1732), + [anon_sym___declspec] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_signed] = ACTIONS(1730), + [anon_sym_unsigned] = ACTIONS(1730), + [anon_sym_long] = ACTIONS(1730), + [anon_sym_short] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_auto] = ACTIONS(1730), + [anon_sym_register] = ACTIONS(1730), + [anon_sym_inline] = ACTIONS(1730), + [anon_sym___inline] = ACTIONS(1730), + [anon_sym___inline__] = ACTIONS(1730), + [anon_sym___forceinline] = ACTIONS(1730), + [anon_sym_thread_local] = ACTIONS(1730), + [anon_sym___thread] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_constexpr] = ACTIONS(1730), + [anon_sym_volatile] = ACTIONS(1730), + [anon_sym_restrict] = ACTIONS(1730), + [anon_sym___restrict__] = ACTIONS(1730), + [anon_sym__Atomic] = ACTIONS(1730), + [anon_sym__Noreturn] = ACTIONS(1730), + [anon_sym_noreturn] = ACTIONS(1730), + [anon_sym__Nonnull] = ACTIONS(1730), + [anon_sym_alignas] = ACTIONS(1730), + [anon_sym__Alignas] = ACTIONS(1730), + [sym_primitive_type] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_case] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_goto] = ACTIONS(1730), + [anon_sym___try] = ACTIONS(1730), + [anon_sym___leave] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_sizeof] = ACTIONS(1730), + [anon_sym___alignof__] = ACTIONS(1730), + [anon_sym___alignof] = ACTIONS(1730), + [anon_sym__alignof] = ACTIONS(1730), + [anon_sym_alignof] = ACTIONS(1730), + [anon_sym__Alignof] = ACTIONS(1730), + [anon_sym_offsetof] = ACTIONS(1730), + [anon_sym__Generic] = ACTIONS(1730), + [anon_sym_asm] = ACTIONS(1730), + [anon_sym___asm__] = ACTIONS(1730), + [anon_sym___asm] = ACTIONS(1730), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_L_SQUOTE] = ACTIONS(1732), + [anon_sym_u_SQUOTE] = ACTIONS(1732), + [anon_sym_U_SQUOTE] = ACTIONS(1732), + [anon_sym_u8_SQUOTE] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_L_DQUOTE] = ACTIONS(1732), + [anon_sym_u_DQUOTE] = ACTIONS(1732), + [anon_sym_U_DQUOTE] = ACTIONS(1732), + [anon_sym_u8_DQUOTE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_true] = ACTIONS(1730), + [sym_false] = ACTIONS(1730), + [anon_sym_NULL] = ACTIONS(1730), + [anon_sym_nullptr] = ACTIONS(1730), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_identifier] = ACTIONS(1742), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym___extension__] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1744), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [anon_sym___inline] = ACTIONS(1742), - [anon_sym___inline__] = ACTIONS(1742), - [anon_sym___forceinline] = ACTIONS(1742), - [anon_sym_thread_local] = ACTIONS(1742), - [anon_sym___thread] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_constexpr] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym___restrict__] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym__Noreturn] = ACTIONS(1742), - [anon_sym_noreturn] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym_alignas] = ACTIONS(1742), - [anon_sym__Alignas] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym___try] = ACTIONS(1742), - [anon_sym___leave] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [anon_sym___alignof__] = ACTIONS(1742), - [anon_sym___alignof] = ACTIONS(1742), - [anon_sym__alignof] = ACTIONS(1742), - [anon_sym_alignof] = ACTIONS(1742), - [anon_sym__Alignof] = ACTIONS(1742), - [anon_sym_offsetof] = ACTIONS(1742), - [anon_sym__Generic] = ACTIONS(1742), - [anon_sym_asm] = ACTIONS(1742), - [anon_sym___asm__] = ACTIONS(1742), - [anon_sym___asm] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [anon_sym_NULL] = ACTIONS(1742), - [anon_sym_nullptr] = ACTIONS(1742), + [395] = { + [sym_identifier] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym___extension__] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym___attribute__] = ACTIONS(1734), + [anon_sym___attribute] = ACTIONS(1734), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1736), + [anon_sym___declspec] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_signed] = ACTIONS(1734), + [anon_sym_unsigned] = ACTIONS(1734), + [anon_sym_long] = ACTIONS(1734), + [anon_sym_short] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1736), + [anon_sym_auto] = ACTIONS(1734), + [anon_sym_register] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym___inline] = ACTIONS(1734), + [anon_sym___inline__] = ACTIONS(1734), + [anon_sym___forceinline] = ACTIONS(1734), + [anon_sym_thread_local] = ACTIONS(1734), + [anon_sym___thread] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_constexpr] = ACTIONS(1734), + [anon_sym_volatile] = ACTIONS(1734), + [anon_sym_restrict] = ACTIONS(1734), + [anon_sym___restrict__] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1734), + [anon_sym__Noreturn] = ACTIONS(1734), + [anon_sym_noreturn] = ACTIONS(1734), + [anon_sym__Nonnull] = ACTIONS(1734), + [anon_sym_alignas] = ACTIONS(1734), + [anon_sym__Alignas] = ACTIONS(1734), + [sym_primitive_type] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_COLON] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1734), + [anon_sym_union] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_goto] = ACTIONS(1734), + [anon_sym___try] = ACTIONS(1734), + [anon_sym___leave] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_sizeof] = ACTIONS(1734), + [anon_sym___alignof__] = ACTIONS(1734), + [anon_sym___alignof] = ACTIONS(1734), + [anon_sym__alignof] = ACTIONS(1734), + [anon_sym_alignof] = ACTIONS(1734), + [anon_sym__Alignof] = ACTIONS(1734), + [anon_sym_offsetof] = ACTIONS(1734), + [anon_sym__Generic] = ACTIONS(1734), + [anon_sym_asm] = ACTIONS(1734), + [anon_sym___asm__] = ACTIONS(1734), + [anon_sym___asm] = ACTIONS(1734), + [sym_number_literal] = ACTIONS(1736), + [anon_sym_L_SQUOTE] = ACTIONS(1736), + [anon_sym_u_SQUOTE] = ACTIONS(1736), + [anon_sym_U_SQUOTE] = ACTIONS(1736), + [anon_sym_u8_SQUOTE] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_L_DQUOTE] = ACTIONS(1736), + [anon_sym_u_DQUOTE] = ACTIONS(1736), + [anon_sym_U_DQUOTE] = ACTIONS(1736), + [anon_sym_u8_DQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1736), + [sym_true] = ACTIONS(1734), + [sym_false] = ACTIONS(1734), + [anon_sym_NULL] = ACTIONS(1734), + [anon_sym_nullptr] = ACTIONS(1734), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), + [396] = { + [sym_expression] = STATE(699), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_initializer_list] = STATE(678), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1380), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1380), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym___attribute] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1380), + [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___attribute] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_COLON] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), [anon_sym_sizeof] = ACTIONS(85), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), @@ -58245,8 +57395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_DASH_GT] = ACTIONS(1380), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -58264,67 +57414,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(845), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(845), - [sym_call_expression] = STATE(845), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(845), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(845), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(714), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_else_token1] = ACTIONS(1388), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1754), + [397] = { + [sym_expression] = STATE(699), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(835), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(835), + [sym_call_expression] = STATE(835), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(835), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(835), + [sym_initializer_list] = STATE(678), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(713), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1380), + [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1746), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -58335,8 +57485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_DASH_GT] = ACTIONS(1380), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -58354,8 +57504,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_else_clause] = STATE(243), + [398] = { + [sym_else_clause] = STATE(250), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(1130), @@ -58402,7 +57552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1128), [anon_sym_union] = ACTIONS(1128), [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1748), [anon_sym_switch] = ACTIONS(1128), [anon_sym_while] = ACTIONS(1128), [anon_sym_do] = ACTIONS(1128), @@ -58443,174 +57593,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1128), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_identifier] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym___attribute__] = ACTIONS(1765), - [anon_sym___attribute] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1767), - [anon_sym___declspec] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_signed] = ACTIONS(1765), - [anon_sym_unsigned] = ACTIONS(1765), - [anon_sym_long] = ACTIONS(1765), - [anon_sym_short] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_inline] = ACTIONS(1765), - [anon_sym___inline] = ACTIONS(1765), - [anon_sym___inline__] = ACTIONS(1765), - [anon_sym___forceinline] = ACTIONS(1765), - [anon_sym_thread_local] = ACTIONS(1765), - [anon_sym___thread] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_constexpr] = ACTIONS(1765), - [anon_sym_volatile] = ACTIONS(1765), - [anon_sym_restrict] = ACTIONS(1765), - [anon_sym___restrict__] = ACTIONS(1765), - [anon_sym__Atomic] = ACTIONS(1765), - [anon_sym__Noreturn] = ACTIONS(1765), - [anon_sym_noreturn] = ACTIONS(1765), - [anon_sym__Nonnull] = ACTIONS(1765), - [anon_sym_alignas] = ACTIONS(1765), - [anon_sym__Alignas] = ACTIONS(1765), - [sym_primitive_type] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym___try] = ACTIONS(1763), - [anon_sym___leave] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_sizeof] = ACTIONS(1763), - [anon_sym___alignof__] = ACTIONS(1763), - [anon_sym___alignof] = ACTIONS(1763), - [anon_sym__alignof] = ACTIONS(1763), - [anon_sym_alignof] = ACTIONS(1763), - [anon_sym__Alignof] = ACTIONS(1763), - [anon_sym_offsetof] = ACTIONS(1763), - [anon_sym__Generic] = ACTIONS(1763), - [anon_sym_asm] = ACTIONS(1763), - [anon_sym___asm__] = ACTIONS(1763), - [anon_sym___asm] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1761), - [anon_sym_L_SQUOTE] = ACTIONS(1761), - [anon_sym_u_SQUOTE] = ACTIONS(1761), - [anon_sym_U_SQUOTE] = ACTIONS(1761), - [anon_sym_u8_SQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_L_DQUOTE] = ACTIONS(1761), - [anon_sym_u_DQUOTE] = ACTIONS(1761), - [anon_sym_U_DQUOTE] = ACTIONS(1761), - [anon_sym_u8_DQUOTE] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [anon_sym_NULL] = ACTIONS(1763), - [anon_sym_nullptr] = ACTIONS(1763), + [399] = { + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym___extension__] = ACTIONS(1750), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym___attribute__] = ACTIONS(1757), + [anon_sym___attribute] = ACTIONS(1757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1759), + [anon_sym___declspec] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_signed] = ACTIONS(1757), + [anon_sym_unsigned] = ACTIONS(1757), + [anon_sym_long] = ACTIONS(1757), + [anon_sym_short] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1757), + [anon_sym_auto] = ACTIONS(1757), + [anon_sym_register] = ACTIONS(1757), + [anon_sym_inline] = ACTIONS(1757), + [anon_sym___inline] = ACTIONS(1757), + [anon_sym___inline__] = ACTIONS(1757), + [anon_sym___forceinline] = ACTIONS(1757), + [anon_sym_thread_local] = ACTIONS(1757), + [anon_sym___thread] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_constexpr] = ACTIONS(1757), + [anon_sym_volatile] = ACTIONS(1757), + [anon_sym_restrict] = ACTIONS(1757), + [anon_sym___restrict__] = ACTIONS(1757), + [anon_sym__Atomic] = ACTIONS(1757), + [anon_sym__Noreturn] = ACTIONS(1757), + [anon_sym_noreturn] = ACTIONS(1757), + [anon_sym__Nonnull] = ACTIONS(1757), + [anon_sym_alignas] = ACTIONS(1757), + [anon_sym__Alignas] = ACTIONS(1757), + [sym_primitive_type] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_goto] = ACTIONS(1755), + [anon_sym___try] = ACTIONS(1755), + [anon_sym___leave] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_sizeof] = ACTIONS(1755), + [anon_sym___alignof__] = ACTIONS(1755), + [anon_sym___alignof] = ACTIONS(1755), + [anon_sym__alignof] = ACTIONS(1755), + [anon_sym_alignof] = ACTIONS(1755), + [anon_sym__Alignof] = ACTIONS(1755), + [anon_sym_offsetof] = ACTIONS(1755), + [anon_sym__Generic] = ACTIONS(1755), + [anon_sym_asm] = ACTIONS(1755), + [anon_sym___asm__] = ACTIONS(1755), + [anon_sym___asm] = ACTIONS(1755), + [sym_number_literal] = ACTIONS(1753), + [anon_sym_L_SQUOTE] = ACTIONS(1753), + [anon_sym_u_SQUOTE] = ACTIONS(1753), + [anon_sym_U_SQUOTE] = ACTIONS(1753), + [anon_sym_u8_SQUOTE] = ACTIONS(1753), + [anon_sym_SQUOTE] = ACTIONS(1753), + [anon_sym_L_DQUOTE] = ACTIONS(1753), + [anon_sym_u_DQUOTE] = ACTIONS(1753), + [anon_sym_U_DQUOTE] = ACTIONS(1753), + [anon_sym_u8_DQUOTE] = ACTIONS(1753), + [anon_sym_DQUOTE] = ACTIONS(1753), + [sym_true] = ACTIONS(1755), + [sym_false] = ACTIONS(1755), + [anon_sym_NULL] = ACTIONS(1755), + [anon_sym_nullptr] = ACTIONS(1755), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [400] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -58618,86 +57768,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1796), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [401] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -58705,86 +57855,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [402] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -58792,86 +57942,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1798), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [403] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1792), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -58879,86 +58029,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [404] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1794), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -58966,86 +58116,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [405] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1792), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -59053,86 +58203,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1802), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [406] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1794), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -59140,86 +58290,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1802), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [407] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -59227,85 +58377,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [408] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -59313,63 +58463,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_expression] = STATE(896), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1812), + [409] = { + [sym_expression] = STATE(889), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_initializer_list] = STATE(678), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1380), + [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -59380,8 +58530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_DASH_GT] = ACTIONS(1380), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -59399,85 +58549,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1798), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), + [410] = { + [sym_string_literal] = STATE(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym___extension__] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym___attribute__] = ACTIONS(1762), + [anon_sym___attribute] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), + [anon_sym___declspec] = ACTIONS(1762), + [anon_sym___based] = ACTIONS(1762), + [anon_sym___cdecl] = ACTIONS(1762), + [anon_sym___clrcall] = ACTIONS(1762), + [anon_sym___stdcall] = ACTIONS(1762), + [anon_sym___fastcall] = ACTIONS(1762), + [anon_sym___thiscall] = ACTIONS(1762), + [anon_sym___vectorcall] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym___inline] = ACTIONS(1762), + [anon_sym___inline__] = ACTIONS(1762), + [anon_sym___forceinline] = ACTIONS(1762), + [anon_sym_thread_local] = ACTIONS(1762), + [anon_sym___thread] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym___restrict__] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym__Noreturn] = ACTIONS(1762), + [anon_sym_noreturn] = ACTIONS(1762), + [anon_sym__Nonnull] = ACTIONS(1762), + [anon_sym_alignas] = ACTIONS(1762), + [anon_sym__Alignas] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1786), + [anon_sym_SLASH_EQ] = ACTIONS(1786), + [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1786), + [anon_sym_DASH_EQ] = ACTIONS(1786), + [anon_sym_LT_LT_EQ] = ACTIONS(1786), + [anon_sym_GT_GT_EQ] = ACTIONS(1786), + [anon_sym_AMP_EQ] = ACTIONS(1786), + [anon_sym_CARET_EQ] = ACTIONS(1786), + [anon_sym_PIPE_EQ] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), [anon_sym_L_DQUOTE] = ACTIONS(99), [anon_sym_u_DQUOTE] = ACTIONS(99), [anon_sym_U_DQUOTE] = ACTIONS(99), @@ -59485,52 +58635,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_based_modifier] = STATE(1967), - [sym_ms_call_modifier] = STATE(1266), - [sym__declarator] = STATE(1454), - [sym__abstract_declarator] = STATE(1555), - [sym_parenthesized_declarator] = STATE(1311), - [sym_abstract_parenthesized_declarator] = STATE(1467), - [sym_attributed_declarator] = STATE(1311), - [sym_pointer_declarator] = STATE(1311), - [sym_abstract_pointer_declarator] = STATE(1467), - [sym_function_declarator] = STATE(1311), - [sym_abstract_function_declarator] = STATE(1467), - [sym_array_declarator] = STATE(1311), - [sym_abstract_array_declarator] = STATE(1467), - [sym_compound_statement] = STATE(1957), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_variadic_parameter] = STATE(1603), - [sym_parameter_list] = STATE(1442), - [sym_parameter_declaration] = STATE(1603), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), + [411] = { + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1118), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_based_modifier] = STATE(1900), + [sym_ms_call_modifier] = STATE(1257), + [sym__declarator] = STATE(1442), + [sym__abstract_declarator] = STATE(1527), + [sym_parenthesized_declarator] = STATE(1300), + [sym_abstract_parenthesized_declarator] = STATE(1443), + [sym_attributed_declarator] = STATE(1300), + [sym_pointer_declarator] = STATE(1300), + [sym_abstract_pointer_declarator] = STATE(1443), + [sym_function_declarator] = STATE(1300), + [sym_abstract_function_declarator] = STATE(1443), + [sym_array_declarator] = STATE(1300), + [sym_abstract_array_declarator] = STATE(1443), + [sym_compound_statement] = STATE(1943), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_variadic_parameter] = STATE(1598), + [sym_parameter_list] = STATE(1452), + [sym_parameter_declaration] = STATE(1598), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1811), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_LPAREN2] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1817), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), [anon_sym___declspec] = ACTIONS(39), - [anon_sym___based] = ACTIONS(1827), + [anon_sym___based] = ACTIONS(1819), [anon_sym___cdecl] = ACTIONS(41), [anon_sym___clrcall] = ACTIONS(41), [anon_sym___stdcall] = ACTIONS(41), @@ -59542,7 +58692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), [anon_sym_short] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1821), [anon_sym_static] = ACTIONS(47), [anon_sym_auto] = ACTIONS(47), [anon_sym_register] = ACTIONS(47), @@ -59569,59 +58719,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_type_qualifier] = STATE(421), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1100), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [412] = { + [sym_type_qualifier] = STATE(662), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1097), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -59649,59 +58799,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1104), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [413] = { + [sym_type_qualifier] = STATE(414), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1083), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(414), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_RBRACK] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -59729,59 +58879,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_type_qualifier] = STATE(427), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1089), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [414] = { + [sym_type_qualifier] = STATE(662), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1099), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -59809,59 +58959,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1102), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [415] = { + [sym_type_qualifier] = STATE(662), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1075), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -59889,59 +59039,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_type_qualifier] = STATE(423), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1103), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [416] = { + [sym_type_qualifier] = STATE(412), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1089), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -59969,59 +59119,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_type_qualifier] = STATE(428), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1086), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_RBRACK] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [417] = { + [sym_type_qualifier] = STATE(662), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1081), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -60049,59 +59199,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1106), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [418] = { + [sym_type_qualifier] = STATE(662), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1087), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -60129,59 +59279,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1080), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [419] = { + [sym_type_qualifier] = STATE(418), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1100), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -60209,59 +59359,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1092), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [420] = { + [sym_type_qualifier] = STATE(417), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1071), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -60289,59 +59439,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_type_qualifier] = STATE(426), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1094), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), + [421] = { + [sym_type_qualifier] = STATE(415), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1096), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_array_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym___extension__] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_constexpr] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_restrict] = ACTIONS(1835), + [anon_sym___restrict__] = ACTIONS(1835), + [anon_sym__Atomic] = ACTIONS(1835), + [anon_sym__Noreturn] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym__Nonnull] = ACTIONS(1835), + [anon_sym_alignas] = ACTIONS(1837), + [anon_sym__Alignas] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1807), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -60369,115 +59519,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_expression] = STATE(1060), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym___extension__] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_RBRACK] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_sizeof] = ACTIONS(1916), - [anon_sym___alignof__] = ACTIONS(1919), - [anon_sym___alignof] = ACTIONS(1919), - [anon_sym__alignof] = ACTIONS(1919), - [anon_sym_alignof] = ACTIONS(1919), - [anon_sym__Alignof] = ACTIONS(1919), - [anon_sym_offsetof] = ACTIONS(1922), - [anon_sym__Generic] = ACTIONS(1925), - [anon_sym_asm] = ACTIONS(1928), - [anon_sym___asm__] = ACTIONS(1928), - [anon_sym___asm] = ACTIONS(1928), - [sym_number_literal] = ACTIONS(1931), - [anon_sym_L_SQUOTE] = ACTIONS(1934), - [anon_sym_u_SQUOTE] = ACTIONS(1934), - [anon_sym_U_SQUOTE] = ACTIONS(1934), - [anon_sym_u8_SQUOTE] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_L_DQUOTE] = ACTIONS(1937), - [anon_sym_u_DQUOTE] = ACTIONS(1937), - [anon_sym_U_DQUOTE] = ACTIONS(1937), - [anon_sym_u8_DQUOTE] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1943), - [anon_sym_nullptr] = ACTIONS(1943), + [422] = { + [sym_expression] = STATE(1036), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(911), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_constexpr] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym___restrict__] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym__Noreturn] = ACTIONS(1706), + [anon_sym_noreturn] = ACTIONS(1706), + [anon_sym__Nonnull] = ACTIONS(1706), + [anon_sym_alignas] = ACTIONS(1706), + [anon_sym__Alignas] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_sizeof] = ACTIONS(1908), + [anon_sym___alignof__] = ACTIONS(1911), + [anon_sym___alignof] = ACTIONS(1911), + [anon_sym__alignof] = ACTIONS(1911), + [anon_sym_alignof] = ACTIONS(1911), + [anon_sym__Alignof] = ACTIONS(1911), + [anon_sym_offsetof] = ACTIONS(1914), + [anon_sym__Generic] = ACTIONS(1917), + [anon_sym_asm] = ACTIONS(1920), + [anon_sym___asm__] = ACTIONS(1920), + [anon_sym___asm] = ACTIONS(1920), + [sym_number_literal] = ACTIONS(1923), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1929), + [anon_sym_u_DQUOTE] = ACTIONS(1929), + [anon_sym_U_DQUOTE] = ACTIONS(1929), + [anon_sym_u8_DQUOTE] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [anon_sym_NULL] = ACTIONS(1935), + [anon_sym_nullptr] = ACTIONS(1935), [sym_comment] = ACTIONS(3), }, - [431] = { - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(1391), - [sym__abstract_declarator] = STATE(1555), - [sym_abstract_parenthesized_declarator] = STATE(1467), - [sym_abstract_pointer_declarator] = STATE(1467), - [sym_abstract_function_declarator] = STATE(1467), - [sym_abstract_array_declarator] = STATE(1467), - [sym_compound_statement] = STATE(1957), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_variadic_parameter] = STATE(1603), - [sym_parameter_list] = STATE(1442), - [sym_parameter_declaration] = STATE(1603), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), + [423] = { + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1118), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_ms_call_modifier] = STATE(1375), + [sym__abstract_declarator] = STATE(1527), + [sym_abstract_parenthesized_declarator] = STATE(1443), + [sym_abstract_pointer_declarator] = STATE(1443), + [sym_abstract_function_declarator] = STATE(1443), + [sym_abstract_array_declarator] = STATE(1443), + [sym_compound_statement] = STATE(1943), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym_variadic_parameter] = STATE(1598), + [sym_parameter_list] = STATE(1452), + [sym_parameter_declaration] = STATE(1598), + [sym_macro_type_specifier] = STATE(770), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1811), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_LPAREN2] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -60495,7 +59645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), [anon_sym_short] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1821), [anon_sym_static] = ACTIONS(47), [anon_sym_auto] = ACTIONS(47), [anon_sym_register] = ACTIONS(47), @@ -60522,45 +59672,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_preproc_def] = STATE(439), - [sym_preproc_function_def] = STATE(439), - [sym_preproc_call] = STATE(439), - [sym_preproc_if_in_field_declaration_list] = STATE(439), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(439), - [sym_preproc_else_in_field_declaration_list] = STATE(1972), - [sym_preproc_elif_in_field_declaration_list] = STATE(1972), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1972), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(439), - [sym_field_declaration] = STATE(439), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(439), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [424] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1916), + [sym_preproc_elif_in_field_declaration_list] = STATE(1916), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1916), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -60597,45 +59747,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1782), - [sym_preproc_elif_in_field_declaration_list] = STATE(1782), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1782), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [425] = { + [sym_preproc_def] = STATE(435), + [sym_preproc_function_def] = STATE(435), + [sym_preproc_call] = STATE(435), + [sym_preproc_if_in_field_declaration_list] = STATE(435), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(435), + [sym_preproc_else_in_field_declaration_list] = STATE(1913), + [sym_preproc_elif_in_field_declaration_list] = STATE(1913), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1913), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(435), + [sym_field_declaration] = STATE(435), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(435), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -60672,45 +59822,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1831), - [sym_preproc_elif_in_field_declaration_list] = STATE(1831), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1831), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [426] = { + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1891), + [sym_preproc_elif_in_field_declaration_list] = STATE(1891), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1891), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -60747,45 +59897,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1829), - [sym_preproc_elif_in_field_declaration_list] = STATE(1829), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1829), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [427] = { + [sym_preproc_def] = STATE(429), + [sym_preproc_function_def] = STATE(429), + [sym_preproc_call] = STATE(429), + [sym_preproc_if_in_field_declaration_list] = STATE(429), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(429), + [sym_preproc_else_in_field_declaration_list] = STATE(1915), + [sym_preproc_elif_in_field_declaration_list] = STATE(1915), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1915), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(429), + [sym_field_declaration] = STATE(429), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(429), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -60822,45 +59972,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1788), - [sym_preproc_elif_in_field_declaration_list] = STATE(1788), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1788), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [428] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1918), + [sym_preproc_elif_in_field_declaration_list] = STATE(1918), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1918), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -60897,45 +60047,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_preproc_def] = STATE(436), - [sym_preproc_function_def] = STATE(436), - [sym_preproc_call] = STATE(436), - [sym_preproc_if_in_field_declaration_list] = STATE(436), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(436), - [sym_preproc_else_in_field_declaration_list] = STATE(1947), - [sym_preproc_elif_in_field_declaration_list] = STATE(1947), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1947), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(436), - [sym_field_declaration] = STATE(436), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(436), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [429] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1921), + [sym_preproc_elif_in_field_declaration_list] = STATE(1921), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1921), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -60972,45 +60122,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_preproc_def] = STATE(434), - [sym_preproc_function_def] = STATE(434), - [sym_preproc_call] = STATE(434), - [sym_preproc_if_in_field_declaration_list] = STATE(434), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(434), - [sym_preproc_else_in_field_declaration_list] = STATE(1804), - [sym_preproc_elif_in_field_declaration_list] = STATE(1804), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1804), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(434), - [sym_field_declaration] = STATE(434), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [430] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1892), + [sym_preproc_elif_in_field_declaration_list] = STATE(1892), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1892), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61047,45 +60197,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1818), - [sym_preproc_elif_in_field_declaration_list] = STATE(1818), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1818), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [431] = { + [sym_preproc_def] = STATE(434), + [sym_preproc_function_def] = STATE(434), + [sym_preproc_call] = STATE(434), + [sym_preproc_if_in_field_declaration_list] = STATE(434), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(434), + [sym_preproc_else_in_field_declaration_list] = STATE(1966), + [sym_preproc_elif_in_field_declaration_list] = STATE(1966), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1966), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(434), + [sym_field_declaration] = STATE(434), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61122,45 +60272,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1887), - [sym_preproc_elif_in_field_declaration_list] = STATE(1887), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1887), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [432] = { + [sym_expression] = STATE(1015), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_initializer_list] = STATE(1643), + [sym_initializer_pair] = STATE(1643), + [sym_subscript_designator] = STATE(1445), + [sym_subscript_range_designator] = STATE(1445), + [sym_field_designator] = STATE(1445), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_initializer_pair_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(1974), + [anon_sym_COMMA] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1982), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [433] = { + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(1822), + [sym_preproc_elif_in_field_declaration_list] = STATE(1822), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1822), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61197,45 +60422,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_preproc_def] = STATE(433), - [sym_preproc_function_def] = STATE(433), - [sym_preproc_call] = STATE(433), - [sym_preproc_if_in_field_declaration_list] = STATE(433), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(433), - [sym_preproc_else_in_field_declaration_list] = STATE(1891), - [sym_preproc_elif_in_field_declaration_list] = STATE(1891), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1891), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(433), - [sym_field_declaration] = STATE(433), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(433), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [434] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1788), + [sym_preproc_elif_in_field_declaration_list] = STATE(1788), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1788), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61272,45 +60497,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [442] = { + [435] = { [sym_preproc_def] = STATE(444), [sym_preproc_function_def] = STATE(444), [sym_preproc_call] = STATE(444), [sym_preproc_if_in_field_declaration_list] = STATE(444), [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), - [sym_preproc_else_in_field_declaration_list] = STATE(2005), - [sym_preproc_elif_in_field_declaration_list] = STATE(2005), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2005), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_preproc_else_in_field_declaration_list] = STATE(1927), + [sym_preproc_elif_in_field_declaration_list] = STATE(1927), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1927), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), [sym__field_declaration_list_item] = STATE(444), [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(770), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61347,45 +60572,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1907), - [sym_preproc_elif_in_field_declaration_list] = STATE(1907), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1907), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [436] = { + [sym_preproc_def] = STATE(438), + [sym_preproc_function_def] = STATE(438), + [sym_preproc_call] = STATE(438), + [sym_preproc_if_in_field_declaration_list] = STATE(438), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(438), + [sym_preproc_else_in_field_declaration_list] = STATE(1982), + [sym_preproc_elif_in_field_declaration_list] = STATE(1982), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1982), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(438), + [sym_field_declaration] = STATE(438), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(438), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61422,45 +60647,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1777), - [sym_preproc_elif_in_field_declaration_list] = STATE(1777), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1777), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [437] = { + [sym_preproc_def] = STATE(439), + [sym_preproc_function_def] = STATE(439), + [sym_preproc_call] = STATE(439), + [sym_preproc_if_in_field_declaration_list] = STATE(439), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(439), + [sym_preproc_else_in_field_declaration_list] = STATE(2007), + [sym_preproc_elif_in_field_declaration_list] = STATE(2007), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2007), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(439), + [sym_field_declaration] = STATE(439), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(439), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61497,45 +60722,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1779), - [sym_preproc_elif_in_field_declaration_list] = STATE(1779), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1779), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [438] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(2010), + [sym_preproc_elif_in_field_declaration_list] = STATE(2010), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2010), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61572,45 +60797,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_preproc_def] = STATE(440), - [sym_preproc_function_def] = STATE(440), - [sym_preproc_call] = STATE(440), - [sym_preproc_if_in_field_declaration_list] = STATE(440), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(440), - [sym_preproc_else_in_field_declaration_list] = STATE(1980), - [sym_preproc_elif_in_field_declaration_list] = STATE(1980), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1980), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(440), - [sym_field_declaration] = STATE(440), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(440), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [439] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1863), + [sym_preproc_elif_in_field_declaration_list] = STATE(1863), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1863), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61647,120 +60872,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_expression] = STATE(1025), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1626), - [sym_initializer_pair] = STATE(1626), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), - [anon_sym_COMMA] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [448] = { - [sym_preproc_def] = STATE(435), - [sym_preproc_function_def] = STATE(435), - [sym_preproc_call] = STATE(435), - [sym_preproc_if_in_field_declaration_list] = STATE(435), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(435), - [sym_preproc_else_in_field_declaration_list] = STATE(1993), - [sym_preproc_elif_in_field_declaration_list] = STATE(1993), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1993), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(435), - [sym_field_declaration] = STATE(435), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(435), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), + [440] = { + [sym_preproc_def] = STATE(424), + [sym_preproc_function_def] = STATE(424), + [sym_preproc_call] = STATE(424), + [sym_preproc_if_in_field_declaration_list] = STATE(424), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(424), + [sym_preproc_else_in_field_declaration_list] = STATE(1872), + [sym_preproc_elif_in_field_declaration_list] = STATE(1872), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1872), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(424), + [sym_field_declaration] = STATE(424), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(424), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token2] = ACTIONS(1998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -61797,38 +60947,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_expression] = STATE(1045), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1688), - [sym_initializer_pair] = STATE(1688), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), + [441] = { + [sym_expression] = STATE(1030), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_initializer_list] = STATE(1683), + [sym_initializer_pair] = STATE(1683), + [sym_subscript_designator] = STATE(1445), + [sym_subscript_range_designator] = STATE(1445), + [sym_field_designator] = STATE(1445), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_initializer_pair_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(1974), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61836,10 +60986,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(1980), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -61853,7 +61003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(1982), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -61871,38 +61021,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_expression] = STATE(1045), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1688), - [sym_initializer_pair] = STATE(1688), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), + [442] = { + [sym_expression] = STATE(1030), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_initializer_list] = STATE(1683), + [sym_initializer_pair] = STATE(1683), + [sym_subscript_designator] = STATE(1445), + [sym_subscript_range_designator] = STATE(1445), + [sym_field_designator] = STATE(1445), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_initializer_pair_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(1974), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61910,10 +61060,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(1980), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -61927,7 +61077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(1982), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -61945,38 +61095,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym_expression] = STATE(1045), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1688), - [sym_initializer_pair] = STATE(1688), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), + [443] = { + [sym_expression] = STATE(1030), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_initializer_list] = STATE(1683), + [sym_initializer_pair] = STATE(1683), + [sym_subscript_designator] = STATE(1445), + [sym_subscript_range_designator] = STATE(1445), + [sym_field_designator] = STATE(1445), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [aux_sym_initializer_pair_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(1974), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61984,9 +61134,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___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1980), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -62000,7 +61150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(1982), [sym_number_literal] = ACTIONS(161), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), @@ -62018,116 +61168,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2015), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_if_token2] = ACTIONS(2021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2023), - [aux_sym_preproc_else_token1] = ACTIONS(2021), - [aux_sym_preproc_elif_token1] = ACTIONS(2021), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2021), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2021), - [sym_preproc_directive] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym___attribute] = ACTIONS(2035), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_auto] = ACTIONS(2032), - [anon_sym_register] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym___inline] = ACTIONS(2032), - [anon_sym___inline__] = ACTIONS(2032), - [anon_sym___forceinline] = ACTIONS(2032), - [anon_sym_thread_local] = ACTIONS(2032), - [anon_sym___thread] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_constexpr] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2029), - [anon_sym_restrict] = ACTIONS(2029), - [anon_sym___restrict__] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2029), - [anon_sym__Noreturn] = ACTIONS(2029), - [anon_sym_noreturn] = ACTIONS(2029), - [anon_sym__Nonnull] = ACTIONS(2029), - [anon_sym_alignas] = ACTIONS(2047), - [anon_sym__Alignas] = ACTIONS(2047), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2059), + [444] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1279), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_def_token1] = ACTIONS(2007), + [aux_sym_preproc_if_token1] = ACTIONS(2010), + [aux_sym_preproc_if_token2] = ACTIONS(2013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2015), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2015), + [aux_sym_preproc_else_token1] = ACTIONS(2013), + [aux_sym_preproc_elif_token1] = ACTIONS(2013), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2013), + [sym_preproc_directive] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2027), + [anon_sym___attribute] = ACTIONS(2027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2033), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_auto] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_constexpr] = ACTIONS(2021), + [anon_sym_volatile] = ACTIONS(2021), + [anon_sym_restrict] = ACTIONS(2021), + [anon_sym___restrict__] = ACTIONS(2021), + [anon_sym__Atomic] = ACTIONS(2021), + [anon_sym__Noreturn] = ACTIONS(2021), + [anon_sym_noreturn] = ACTIONS(2021), + [anon_sym__Nonnull] = ACTIONS(2021), + [anon_sym_alignas] = ACTIONS(2039), + [anon_sym__Alignas] = ACTIONS(2039), + [sym_primitive_type] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2051), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_preproc_def] = STATE(454), - [sym_preproc_function_def] = STATE(454), - [sym_preproc_call] = STATE(454), - [sym_preproc_if_in_field_declaration_list] = STATE(454), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(454), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1284), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(454), - [sym_field_declaration] = STATE(454), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(454), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2062), - [aux_sym_preproc_if_token1] = ACTIONS(2064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2066), - [sym_preproc_directive] = ACTIONS(2068), + [445] = { + [sym_preproc_def] = STATE(445), + [sym_preproc_function_def] = STATE(445), + [sym_preproc_call] = STATE(445), + [sym_preproc_if_in_field_declaration_list] = STATE(445), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1275), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(445), + [sym_field_declaration] = STATE(445), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2027), + [anon_sym___attribute] = ACTIONS(2027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_auto] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_constexpr] = ACTIONS(2021), + [anon_sym_volatile] = ACTIONS(2021), + [anon_sym_restrict] = ACTIONS(2021), + [anon_sym___restrict__] = ACTIONS(2021), + [anon_sym__Atomic] = ACTIONS(2021), + [anon_sym__Noreturn] = ACTIONS(2021), + [anon_sym_noreturn] = ACTIONS(2021), + [anon_sym__Nonnull] = ACTIONS(2021), + [anon_sym_alignas] = ACTIONS(2039), + [anon_sym__Alignas] = ACTIONS(2039), + [sym_primitive_type] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2051), + [sym_comment] = ACTIONS(3), + }, + [446] = { + [sym_preproc_def] = STATE(449), + [sym_preproc_function_def] = STATE(449), + [sym_preproc_call] = STATE(449), + [sym_preproc_if_in_field_declaration_list] = STATE(449), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(449), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1278), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(449), + [sym_field_declaration] = STATE(449), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(449), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [sym_preproc_directive] = ACTIONS(2076), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), [anon_sym___declspec] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2070), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -62158,44 +61376,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_preproc_def] = STATE(456), - [sym_preproc_function_def] = STATE(456), - [sym_preproc_call] = STATE(456), - [sym_preproc_if_in_field_declaration_list] = STATE(456), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(456), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1284), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(456), - [sym_field_declaration] = STATE(456), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(456), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2062), - [aux_sym_preproc_if_token1] = ACTIONS(2064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2066), - [sym_preproc_directive] = ACTIONS(2068), + [447] = { + [sym_preproc_def] = STATE(450), + [sym_preproc_function_def] = STATE(450), + [sym_preproc_call] = STATE(450), + [sym_preproc_if_in_field_declaration_list] = STATE(450), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(450), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1275), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(450), + [sym_field_declaration] = STATE(450), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(450), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(2078), + [aux_sym_preproc_if_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2082), + [sym_preproc_directive] = ACTIONS(2084), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), [anon_sym___declspec] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2086), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -62226,38 +61444,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_preproc_def] = STATE(457), - [sym_preproc_function_def] = STATE(457), - [sym_preproc_call] = STATE(457), - [sym_preproc_if_in_field_declaration_list] = STATE(457), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(457), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1283), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(457), - [sym_field_declaration] = STATE(457), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2074), - [aux_sym_preproc_if_token1] = ACTIONS(2076), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), - [sym_preproc_directive] = ACTIONS(2082), + [448] = { + [sym_preproc_def] = STATE(446), + [sym_preproc_function_def] = STATE(446), + [sym_preproc_call] = STATE(446), + [sym_preproc_if_in_field_declaration_list] = STATE(446), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1278), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(446), + [sym_field_declaration] = STATE(446), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [sym_preproc_directive] = ACTIONS(2076), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), @@ -62294,180 +61512,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym_preproc_def] = STATE(456), - [sym_preproc_function_def] = STATE(456), - [sym_preproc_call] = STATE(456), - [sym_preproc_if_in_field_declaration_list] = STATE(456), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(456), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1284), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(456), - [sym_field_declaration] = STATE(456), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(456), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2084), - [aux_sym_preproc_if_token1] = ACTIONS(2087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [sym_preproc_directive] = ACTIONS(2093), - [anon_sym___extension__] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym___attribute] = ACTIONS(2035), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_auto] = ACTIONS(2032), - [anon_sym_register] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym___inline] = ACTIONS(2032), - [anon_sym___inline__] = ACTIONS(2032), - [anon_sym___forceinline] = ACTIONS(2032), - [anon_sym_thread_local] = ACTIONS(2032), - [anon_sym___thread] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_constexpr] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2029), - [anon_sym_restrict] = ACTIONS(2029), - [anon_sym___restrict__] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2029), - [anon_sym__Noreturn] = ACTIONS(2029), - [anon_sym_noreturn] = ACTIONS(2029), - [anon_sym__Nonnull] = ACTIONS(2029), - [anon_sym_alignas] = ACTIONS(2047), - [anon_sym__Alignas] = ACTIONS(2047), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [457] = { - [sym_preproc_def] = STATE(457), - [sym_preproc_function_def] = STATE(457), - [sym_preproc_call] = STATE(457), - [sym_preproc_if_in_field_declaration_list] = STATE(457), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(457), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1283), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(457), - [sym_field_declaration] = STATE(457), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2098), - [aux_sym_preproc_if_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token2] = ACTIONS(2021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), - [sym_preproc_directive] = ACTIONS(2107), - [anon_sym___extension__] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym___attribute] = ACTIONS(2035), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_auto] = ACTIONS(2032), - [anon_sym_register] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym___inline] = ACTIONS(2032), - [anon_sym___inline__] = ACTIONS(2032), - [anon_sym___forceinline] = ACTIONS(2032), - [anon_sym_thread_local] = ACTIONS(2032), - [anon_sym___thread] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_constexpr] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2029), - [anon_sym_restrict] = ACTIONS(2029), - [anon_sym___restrict__] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2029), - [anon_sym__Noreturn] = ACTIONS(2029), - [anon_sym_noreturn] = ACTIONS(2029), - [anon_sym__Nonnull] = ACTIONS(2029), - [anon_sym_alignas] = ACTIONS(2047), - [anon_sym__Alignas] = ACTIONS(2047), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2059), + [449] = { + [sym_preproc_def] = STATE(449), + [sym_preproc_function_def] = STATE(449), + [sym_preproc_call] = STATE(449), + [sym_preproc_if_in_field_declaration_list] = STATE(449), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(449), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1278), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(449), + [sym_field_declaration] = STATE(449), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(449), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2093), + [aux_sym_preproc_if_token2] = ACTIONS(2013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [sym_preproc_directive] = ACTIONS(2099), + [anon_sym___extension__] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2027), + [anon_sym___attribute] = ACTIONS(2027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2033), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_auto] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_constexpr] = ACTIONS(2021), + [anon_sym_volatile] = ACTIONS(2021), + [anon_sym_restrict] = ACTIONS(2021), + [anon_sym___restrict__] = ACTIONS(2021), + [anon_sym__Atomic] = ACTIONS(2021), + [anon_sym__Noreturn] = ACTIONS(2021), + [anon_sym_noreturn] = ACTIONS(2021), + [anon_sym__Nonnull] = ACTIONS(2021), + [anon_sym_alignas] = ACTIONS(2039), + [anon_sym__Alignas] = ACTIONS(2039), + [sym_primitive_type] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2051), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_preproc_def] = STATE(455), - [sym_preproc_function_def] = STATE(455), - [sym_preproc_call] = STATE(455), - [sym_preproc_if_in_field_declaration_list] = STATE(455), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(455), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1283), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(455), - [sym_field_declaration] = STATE(455), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(455), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2074), - [aux_sym_preproc_if_token1] = ACTIONS(2076), - [aux_sym_preproc_if_token2] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), - [sym_preproc_directive] = ACTIONS(2082), + [450] = { + [sym_preproc_def] = STATE(445), + [sym_preproc_function_def] = STATE(445), + [sym_preproc_call] = STATE(445), + [sym_preproc_if_in_field_declaration_list] = STATE(445), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), + [sym__declaration_modifiers] = STATE(695), + [sym__declaration_specifiers] = STATE(1275), + [sym_attribute_specifier] = STATE(695), + [sym_attribute_declaration] = STATE(695), + [sym_ms_declspec_modifier] = STATE(695), + [sym_storage_class_specifier] = STATE(695), + [sym_type_qualifier] = STATE(695), + [sym_alignas_qualifier] = STATE(711), + [sym_type_specifier] = STATE(720), + [sym_sized_type_specifier] = STATE(770), + [sym_enum_specifier] = STATE(770), + [sym_struct_specifier] = STATE(770), + [sym_union_specifier] = STATE(770), + [sym__field_declaration_list_item] = STATE(445), + [sym_field_declaration] = STATE(445), + [sym_macro_type_specifier] = STATE(770), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), + [aux_sym__declaration_specifiers_repeat1] = STATE(695), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(2078), + [aux_sym_preproc_if_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2082), + [sym_preproc_directive] = ACTIONS(2084), [anon_sym___extension__] = ACTIONS(49), [anon_sym_extern] = ACTIONS(47), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), [anon_sym___declspec] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(2102), [anon_sym_signed] = ACTIONS(45), [anon_sym_unsigned] = ACTIONS(45), [anon_sym_long] = ACTIONS(45), @@ -62498,34 +61648,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_compound_statement] = STATE(1669), - [sym_expression] = STATE(1024), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(2112), + [451] = { + [sym_compound_statement] = STATE(1667), + [sym_expression] = STATE(1018), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(2104), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62533,7 +61683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), @@ -62565,34 +61715,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [460] = { - [sym_compound_statement] = STATE(2002), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), + [452] = { + [sym_compound_statement] = STATE(1772), + [sym_expression] = STATE(1033), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1772), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62600,7 +61750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), @@ -62632,34 +61782,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_compound_statement] = STATE(1884), - [sym_expression] = STATE(1072), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1884), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), + [453] = { + [sym_compound_statement] = STATE(1901), + [sym_expression] = STATE(1031), + [sym__string] = STATE(684), + [sym_comma_expression] = STATE(1901), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62667,7 +61817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), @@ -62699,34 +61849,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym_compound_statement] = STATE(1658), - [sym_expression] = STATE(1026), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(2114), + [454] = { + [sym_compound_statement] = STATE(1621), + [sym_expression] = STATE(1017), + [sym__string] = STATE(684), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(837), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_alignof_expression] = STATE(684), + [sym_offsetof_expression] = STATE(684), + [sym_generic_expression] = STATE(684), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_gnu_asm_expression] = STATE(684), + [sym_extension_expression] = STATE(684), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(837), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(663), + [sym_null] = STATE(684), + [sym_identifier] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(2106), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62734,7 +61884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), @@ -62782,18 +61932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2108), 1, + anon_sym_SEMI, + STATE(663), 1, sym_string_literal, - STATE(1043), 1, + STATE(1048), 1, sym_expression, - STATE(1729), 1, - sym_initializer_list, + STATE(1814), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -62834,13 +61984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62871,18 +62021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2116), 1, - anon_sym_SEMI, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1050), 1, + STATE(678), 1, + sym_initializer_list, + STATE(699), 1, sym_expression, - STATE(1795), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -62923,13 +62073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62952,8 +62102,6 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(43), 1, - anon_sym_LBRACE, ACTIONS(85), 1, anon_sym_sizeof, ACTIONS(89), 1, @@ -62962,16 +62110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2110), 1, + anon_sym_SEMI, + STATE(663), 1, sym_string_literal, - STATE(1047), 1, + STATE(1046), 1, sym_expression, - STATE(1713), 1, - sym_compound_statement, + STATE(1957), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -63012,13 +62162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63039,46 +62189,313 @@ static const uint16_t ts_small_parse_table[] = { [339] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1404), 1, + anon_sym___extension__, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(1398), 1, + ACTIONS(2112), 1, + anon_sym_SEMI, + STATE(663), 1, + sym_string_literal, + STATE(1052), 1, + sym_expression, + STATE(1807), 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(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(837), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [452] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1734), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(686), 1, - sym_initializer_list, - STATE(896), 1, + STATE(1032), 1, sym_expression, + STATE(1754), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(837), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [565] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1404), 1, + anon_sym___extension__, + ACTIONS(1738), 1, + sym_identifier, + ACTIONS(2114), 1, + anon_sym_RPAREN, + STATE(663), 1, + sym_string_literal, + STATE(1037), 1, + sym_expression, + STATE(1954), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(837), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [678] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1404), 1, + anon_sym___extension__, + ACTIONS(1738), 1, + sym_identifier, + ACTIONS(2116), 1, + anon_sym_RPAREN, + STATE(663), 1, + sym_string_literal, + STATE(1038), 1, + sym_expression, + STATE(1971), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63101,13 +62518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63125,208 +62542,30 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [452] = 24, + [791] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(2122), 1, - anon_sym_RPAREN, - STATE(673), 1, - sym_string_literal, - STATE(1059), 1, - sym_expression, - STATE(1826), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [565] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(1027), 1, - sym_expression, - STATE(1714), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [678] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1406), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(686), 1, + STATE(678), 1, sym_initializer_list, - STATE(700), 1, + STATE(699), 1, sym_expression, - STATE(714), 1, + STATE(713), 1, sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, @@ -63334,16 +62573,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -63368,13 +62607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63392,7 +62631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [791] = 24, + [904] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63405,18 +62644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(686), 1, - sym_initializer_list, - STATE(700), 1, + STATE(1041), 1, sym_expression, + STATE(1686), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -63457,13 +62696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63481,7 +62720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [904] = 24, + [1017] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63494,17 +62733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2130), 1, + ACTIONS(2124), 1, anon_sym_SEMI, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1055), 1, + STATE(1029), 1, sym_expression, - STATE(1871), 1, + STATE(1817), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63546,13 +62785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63570,7 +62809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1017] = 24, + [1130] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63583,17 +62822,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2132), 1, + ACTIONS(2126), 1, anon_sym_RPAREN, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1054), 1, + STATE(1049), 1, sym_expression, - STATE(1860), 1, + STATE(1771), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63635,13 +62874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63659,49 +62898,49 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1130] = 24, + [1243] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(2134), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(1388), 1, + anon_sym___extension__, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(2128), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(1068), 1, + STATE(678), 1, + sym_initializer_list, + STATE(699), 1, sym_expression, - STATE(1925), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1384), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2130), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63724,13 +62963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63748,7 +62987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1243] = 24, + [1356] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63761,18 +63000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2132), 1, + anon_sym_RPAREN, + STATE(663), 1, sym_string_literal, - STATE(1046), 1, + STATE(1040), 1, sym_expression, - STATE(1691), 1, - sym_initializer_list, + STATE(1973), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -63813,13 +63052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63837,7 +63076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1356] = 24, + [1469] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63850,17 +63089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2136), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(2134), 1, + anon_sym_SEMI, + STATE(663), 1, sym_string_literal, - STATE(1048), 1, + STATE(1057), 1, sym_expression, - STATE(1973), 1, + STATE(1849), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63902,13 +63141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63926,7 +63165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1469] = 24, + [1582] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63939,17 +63178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2138), 1, - anon_sym_COLON, - STATE(673), 1, + ACTIONS(2136), 1, + anon_sym_RPAREN, + STATE(663), 1, sym_string_literal, - STATE(1041), 1, + STATE(1027), 1, sym_expression, - STATE(1998), 1, + STATE(1981), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63991,13 +63230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64015,7 +63254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1582] = 24, + [1695] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64028,17 +63267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2140), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(2138), 1, + anon_sym_COLON, + STATE(663), 1, sym_string_literal, - STATE(1064), 1, + STATE(1045), 1, sym_expression, - STATE(1840), 1, + STATE(1999), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64080,13 +63319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64104,7 +63343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1695] = 24, + [1808] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64117,17 +63356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2142), 1, + ACTIONS(2140), 1, anon_sym_COLON, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1065), 1, + STATE(1047), 1, sym_expression, - STATE(1883), 1, + STATE(1871), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64169,13 +63408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64193,7 +63432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1808] = 24, + [1921] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -64202,21 +63441,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(686), 1, + STATE(678), 1, sym_initializer_list, - STATE(896), 1, + STATE(889), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -64224,16 +63463,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -64258,13 +63497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64282,49 +63521,49 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1921] = 24, + [2034] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1744), 1, anon_sym___extension__, ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(2142), 1, sym_identifier, ACTIONS(2144), 1, - anon_sym_SEMI, - STATE(673), 1, - sym_string_literal, - STATE(1056), 1, + anon_sym_LPAREN2, + STATE(678), 1, + sym_initializer_list, + STATE(699), 1, sym_expression, - STATE(1908), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(713), 1, + sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1740), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64347,13 +63586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64371,7 +63610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2034] = 24, + [2147] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64384,17 +63623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2146), 1, + ACTIONS(2148), 1, anon_sym_COLON, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1070), 1, + STATE(1019), 1, sym_expression, - STATE(1911), 1, + STATE(2014), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64436,102 +63675,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2147] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(686), 1, - sym_initializer_list, - STATE(700), 1, - sym_expression, - STATE(714), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64562,17 +63712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2154), 1, + ACTIONS(2150), 1, anon_sym_SEMI, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1075), 1, + STATE(1070), 1, sym_expression, - STATE(1939), 1, + STATE(1851), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64614,13 +63764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64643,6 +63793,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(43), 1, + anon_sym_LBRACE, ACTIONS(85), 1, anon_sym_sizeof, ACTIONS(89), 1, @@ -64651,18 +63803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2156), 1, - anon_sym_COLON, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1078), 1, + STATE(1025), 1, sym_expression, - STATE(1834), 1, - sym_comma_expression, + STATE(1758), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -64703,13 +63853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64740,18 +63890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2158), 1, - anon_sym_SEMI, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1061), 1, + STATE(1043), 1, sym_expression, - STATE(1965), 1, - sym_comma_expression, + STATE(1712), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -64792,13 +63942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64829,17 +63979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2160), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(2152), 1, + anon_sym_COLON, + STATE(663), 1, sym_string_literal, - STATE(1066), 1, + STATE(1065), 1, sym_expression, - STATE(1857), 1, + STATE(1989), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64881,13 +64031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64918,17 +64068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2162), 1, + ACTIONS(2154), 1, anon_sym_SEMI, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1077), 1, + STATE(1034), 1, sym_expression, - STATE(1964), 1, + STATE(1770), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64970,13 +64120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64997,46 +64147,46 @@ static const uint16_t ts_small_parse_table[] = { [2825] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + ACTIONS(2156), 1, + anon_sym_COLON, + STATE(663), 1, sym_string_literal, - STATE(686), 1, - sym_initializer_list, - STATE(700), 1, + STATE(1069), 1, sym_expression, + STATE(1809), 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(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1392), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2166), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65059,13 +64209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65096,17 +64246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2168), 1, - anon_sym_COLON, - STATE(673), 1, + ACTIONS(2158), 1, + anon_sym_RPAREN, + STATE(663), 1, sym_string_literal, - STATE(1073), 1, + STATE(1022), 1, sym_expression, - STATE(1997), 1, + STATE(1843), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65148,13 +64298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65185,17 +64335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2170), 1, + ACTIONS(2160), 1, anon_sym_COLON, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1039), 1, + STATE(1067), 1, sym_expression, - STATE(1979), 1, + STATE(1831), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65237,13 +64387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65264,46 +64414,46 @@ static const uint16_t ts_small_parse_table[] = { [3164] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(2172), 1, - anon_sym_SEMI, - STATE(673), 1, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym___extension__, + ACTIONS(1728), 1, + anon_sym_sizeof, + ACTIONS(2162), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(1051), 1, + STATE(678), 1, + sym_initializer_list, + STATE(889), 1, sym_expression, - STATE(1974), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1722), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1724), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65326,13 +64476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65351,6 +64501,93 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_null, [3277] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1938), 1, + sym_identifier, + ACTIONS(2166), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_ms_call_modifier, + STATE(704), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, + sym_type_specifier, + STATE(1143), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(122), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(770), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(695), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [3387] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -65359,19 +64596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2174), 1, + ACTIONS(2168), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -65379,16 +64616,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -65413,13 +64650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65437,47 +64674,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3387] = 23, + [3497] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1726), 1, + anon_sym___extension__, + ACTIONS(1728), 1, + anon_sym_sizeof, + ACTIONS(2162), 1, + anon_sym_LPAREN2, + ACTIONS(2170), 1, + anon_sym_RBRACK, + STATE(663), 1, sym_string_literal, - STATE(1019), 1, + STATE(906), 1, sym_expression, - STATE(1671), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1722), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1724), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65500,13 +64737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65524,7 +64761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3497] = 23, + [3607] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -65533,19 +64770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2176), 1, + ACTIONS(2172), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -65553,16 +64790,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -65587,13 +64824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65611,7 +64848,94 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3607] = 23, + [3717] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1938), 1, + sym_identifier, + ACTIONS(2174), 1, + anon_sym_LBRACE, + STATE(685), 1, + sym_ms_call_modifier, + STATE(704), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, + sym_type_specifier, + STATE(1144), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(260), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(770), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(695), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [3827] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -65620,19 +64944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2176), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -65640,16 +64964,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -65674,13 +64998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65698,7 +65022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3717] = 23, + [3937] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -65707,19 +65031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2180), 1, + ACTIONS(2178), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -65727,16 +65051,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -65761,13 +65085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65785,7 +65109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3827] = 23, + [4047] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -65800,19 +65124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - ACTIONS(2182), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - STATE(683), 1, + STATE(689), 1, sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1148), 1, + STATE(1145), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -65820,7 +65144,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(326), 3, + STATE(287), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -65829,7 +65153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -65842,7 +65166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -65872,7 +65196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [3937] = 23, + [4157] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -65881,19 +65205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2184), 1, + ACTIONS(2182), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -65901,16 +65225,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -65935,13 +65259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65959,7 +65283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4047] = 23, + [4267] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -65974,19 +65298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - ACTIONS(2186), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - STATE(696), 1, + STATE(676), 1, sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1162), 1, + STATE(1154), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -65994,7 +65318,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(143), 3, + STATE(315), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -66003,7 +65327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66016,7 +65340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66046,7 +65370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [4157] = 23, + [4377] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -66055,19 +65379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2188), 1, + ACTIONS(2186), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -66075,16 +65399,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66109,13 +65433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66133,7 +65457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4267] = 23, + [4487] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -66142,19 +65466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2190), 1, + ACTIONS(2188), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -66162,16 +65486,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66196,13 +65520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66220,7 +65544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4377] = 23, + [4597] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -66229,19 +65553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2192), 1, + ACTIONS(2190), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -66249,16 +65573,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66283,13 +65607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66307,94 +65631,94 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4487] = 23, + [4707] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(2194), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1153), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(291), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1404), 1, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [4597] = 23, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, + sym_string_literal, + STATE(1012), 1, + sym_expression, + STATE(1656), 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(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(837), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4817] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -66403,19 +65727,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - ACTIONS(2196), 1, + ACTIONS(2192), 1, anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(906), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -66423,16 +65747,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66457,13 +65781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66481,7 +65805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4707] = 23, + [4927] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -66490,36 +65814,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - ACTIONS(2198), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(913), 1, + STATE(831), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66544,13 +65866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66568,98 +65890,9 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4817] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(2200), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1165), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(262), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [4927] = 22, + [5034] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, ACTIONS(85), 1, anon_sym_sizeof, ACTIONS(89), 1, @@ -66668,13 +65901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(1081), 1, + STATE(702), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66716,13 +65951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66740,45 +65975,130 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5034] = 22, + [5141] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1388), 1, + anon_sym___extension__, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(2128), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(982), 1, + STATE(829), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1384), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(675), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5248] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1744), 1, + anon_sym___extension__, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, + anon_sym_LPAREN2, + STATE(713), 1, + sym_string_literal, + STATE(973), 1, + sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1740), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -66801,13 +66121,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66825,7 +66145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5141] = 22, + [5355] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66838,13 +66158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(991), 1, + STATE(1078), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66886,13 +66206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66910,7 +66230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5248] = 22, + [5462] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -66919,17 +66239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2142), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(713), 1, sym_string_literal, - STATE(980), 1, + STATE(983), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -66937,16 +66257,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66971,13 +66291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66995,45 +66315,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5355] = 22, + [5569] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1388), 1, + anon_sym___extension__, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(2128), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(1095), 1, + STATE(834), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1384), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2130), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67056,13 +66376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67080,45 +66400,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5462] = 22, + [5676] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(968), 1, + STATE(985), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67141,13 +66461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67165,7 +66485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5569] = 22, + [5783] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67178,13 +66498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(702), 1, + STATE(978), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67226,13 +66546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67250,7 +66570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5676] = 22, + [5890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -67259,17 +66579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2142), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(713), 1, sym_string_literal, - STATE(971), 1, + STATE(974), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -67277,16 +66597,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -67311,13 +66631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67335,45 +66655,130 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5783] = 22, + [5997] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(981), 1, + STATE(962), 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(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(837), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6104] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1404), 1, + anon_sym___extension__, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, + sym_string_literal, + STATE(1053), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67396,13 +66801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67420,7 +66825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5890] = 22, + [6211] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67433,13 +66838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(993), 1, + STATE(1023), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67481,13 +66886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67505,45 +66910,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5997] = 22, + [6318] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(713), 1, sym_string_literal, - STATE(1021), 1, + STATE(833), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67566,13 +66971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67590,45 +66995,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6104] = 22, + [6425] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1726), 1, + anon_sym___extension__, + ACTIONS(1728), 1, + anon_sym_sizeof, + ACTIONS(2162), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(984), 1, + STATE(888), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1722), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1724), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67651,13 +67056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67675,45 +67080,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6211] = 22, + [6532] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(713), 1, sym_string_literal, - STATE(985), 1, + STATE(805), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67736,13 +67141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67760,45 +67165,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6318] = 22, + [6639] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(713), 1, sym_string_literal, - STATE(1067), 1, + STATE(806), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67821,13 +67226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67845,45 +67250,130 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6425] = 22, + [6746] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(713), 1, sym_string_literal, - STATE(1057), 1, + STATE(807), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(675), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6853] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1378), 1, + sym_identifier, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(713), 1, + sym_string_literal, + STATE(808), 1, + sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67906,13 +67396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67930,7 +67420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6532] = 22, + [6960] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -67939,17 +67429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(713), 1, sym_string_literal, - STATE(824), 1, + STATE(809), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -67957,16 +67447,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -67991,13 +67481,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68015,7 +67505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6639] = 22, + [7067] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -68024,17 +67514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1400), 1, anon_sym_sizeof, ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(895), 1, + STATE(810), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -68042,16 +67532,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68076,13 +67566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68100,7 +67590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6746] = 22, + [7174] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -68109,17 +67599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(713), 1, sym_string_literal, - STATE(825), 1, + STATE(811), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -68127,16 +67617,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68161,13 +67651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68185,7 +67675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6853] = 22, + [7281] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -68194,17 +67684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(713), 1, sym_string_literal, - STATE(826), 1, + STATE(812), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -68212,16 +67702,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68246,13 +67736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68270,45 +67760,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6960] = 22, + [7388] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(842), 1, + STATE(1082), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68331,13 +67821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68355,45 +67845,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7067] = 22, + [7495] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(828), 1, + STATE(1092), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68416,13 +67906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68440,7 +67930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7174] = 22, + [7602] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -68449,34 +67939,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(829), 1, + STATE(819), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68501,13 +67991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68525,7 +68015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7281] = 22, + [7709] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -68534,17 +68024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(713), 1, sym_string_literal, - STATE(830), 1, + STATE(813), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -68552,16 +68042,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68586,13 +68076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68610,45 +68100,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7388] = 22, + [7816] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(831), 1, + STATE(961), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68671,13 +68161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68695,7 +68185,84 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7495] = 22, + [7923] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_const, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(1772), 1, + anon_sym_STAR, + ACTIONS(1782), 1, + anon_sym_EQ, + STATE(621), 1, + sym_string_literal, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1775), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2196), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1786), 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(1770), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1778), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1764), 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, + [8014] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -68704,17 +68271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(832), 1, + STATE(1090), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -68722,16 +68289,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68756,13 +68323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68780,45 +68347,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7602] = 22, + [8121] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(713), 1, sym_string_literal, - STATE(1090), 1, + STATE(814), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68841,13 +68408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68865,7 +68432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7709] = 22, + [8228] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -68874,34 +68441,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(813), 1, + STATE(1039), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68926,13 +68493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68950,7 +68517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7816] = 22, + [8335] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -68963,13 +68530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1099), 1, + STATE(1095), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69011,13 +68578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69035,45 +68602,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7923] = 22, + [8442] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1744), 1, anon_sym___extension__, ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(2142), 1, sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(992), 1, + ACTIONS(2144), 1, + anon_sym_LPAREN2, + STATE(691), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(713), 1, + sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1740), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69096,13 +68663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69120,45 +68687,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8030] = 22, + [8549] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(833), 1, + STATE(975), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69181,13 +68748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69205,7 +68772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8137] = 22, + [8656] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -69214,17 +68781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2142), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(702), 1, + STATE(701), 1, sym_expression, - STATE(714), 1, + STATE(713), 1, sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, @@ -69232,16 +68799,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69266,13 +68833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69290,7 +68857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8244] = 22, + [8763] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -69299,34 +68866,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2142), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2198), 1, anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(972), 1, + STATE(702), 1, sym_expression, + STATE(713), 1, + sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69351,13 +68918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69375,45 +68942,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8351] = 22, + [8870] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(1096), 1, + STATE(980), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69436,13 +69003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69460,7 +69027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8458] = 22, + [8977] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -69469,34 +69036,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1028), 1, + STATE(822), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69521,13 +69088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69545,7 +69112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8565] = 22, + [9084] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -69554,17 +69121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(713), 1, sym_string_literal, - STATE(834), 1, + STATE(981), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -69572,16 +69139,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69606,13 +69173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69630,7 +69197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8672] = 22, + [9191] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -69643,13 +69210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1098), 1, + STATE(697), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69691,13 +69258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69715,92 +69282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8779] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(708), 1, - sym_expression, - STATE(714), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(845), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [8886] = 22, + [9298] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -69813,13 +69295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(986), 1, + STATE(701), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69861,13 +69343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69885,130 +69367,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8993] = 22, + [9405] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(704), 1, - sym_expression, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + STATE(691), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(845), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [9100] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - STATE(705), 1, - sym_expression, - STATE(714), 1, - sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70031,13 +69428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70055,45 +69452,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9207] = 22, + [9512] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(987), 1, + STATE(1013), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70116,13 +69513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70140,45 +69537,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9314] = 22, + [9619] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(973), 1, + STATE(959), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70201,13 +69598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70225,7 +69622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9421] = 22, + [9726] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70238,13 +69635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(704), 1, + STATE(976), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70286,13 +69683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70310,122 +69707,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9528] = 14, + [9833] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1770), 1, - anon_sym_const, - ACTIONS(1774), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1780), 1, - anon_sym_STAR, - ACTIONS(1790), 1, - anon_sym_EQ, - STATE(630), 1, - sym_string_literal, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1783), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2204), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1786), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1772), 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, - [9619] = 22, - ACTIONS(3), 1, - sym_comment, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1738), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(974), 1, + STATE(1016), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70448,13 +69768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70472,7 +69792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9726] = 22, + [9940] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70485,13 +69805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(969), 1, + STATE(1091), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70533,13 +69853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70557,7 +69877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9833] = 22, + [10047] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -70566,17 +69886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1799), 1, + sym_identifier, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(975), 1, + STATE(1094), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -70584,16 +69904,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -70618,13 +69938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70642,7 +69962,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9940] = 22, + [10154] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1378), 1, + sym_identifier, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(697), 1, + sym_expression, + STATE(713), 1, + sym_string_literal, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(675), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [10261] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70655,13 +70060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(983), 1, + STATE(977), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70703,13 +70108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70727,7 +70132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10047] = 22, + [10368] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -70736,34 +70141,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1378), 1, + sym_identifier, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(976), 1, + STATE(691), 1, sym_expression, + STATE(713), 1, + sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -70788,13 +70193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70812,7 +70217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10154] = 22, + [10475] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -70821,17 +70226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(816), 1, + STATE(818), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -70842,13 +70247,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -70873,13 +70278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70897,45 +70302,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10261] = 22, + [10582] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(1023), 1, + ACTIONS(1398), 1, + anon_sym___extension__, + ACTIONS(1400), 1, + anon_sym_sizeof, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + STATE(701), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(713), 1, + sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1396), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70958,13 +70363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70982,7 +70387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10368] = 22, + [10689] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -70991,17 +70396,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2200), 1, anon_sym_LPAREN2, STATE(702), 1, sym_expression, - STATE(714), 1, + STATE(713), 1, sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, @@ -71009,16 +70414,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71043,13 +70448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71067,7 +70472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10475] = 22, + [10796] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -71076,34 +70481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1398), 1, anon_sym___extension__, ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(817), 1, + STATE(692), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(713), 1, + sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71128,13 +70533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71152,7 +70557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10582] = 22, + [10903] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -71161,34 +70566,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(708), 1, - sym_expression, - STATE(714), 1, + STATE(663), 1, sym_string_literal, + STATE(692), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71213,13 +70618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71237,7 +70642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10689] = 22, + [11010] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -71246,34 +70651,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1398), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1400), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - STATE(704), 1, - sym_expression, - STATE(714), 1, + STATE(713), 1, sym_string_literal, + STATE(817), 1, + sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1396), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2122), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71298,13 +70703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71322,7 +70727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10796] = 22, + [11117] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -71331,34 +70736,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(705), 1, - sym_expression, - STATE(714), 1, + STATE(663), 1, sym_string_literal, + STATE(701), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71383,13 +70788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71407,45 +70812,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10903] = 22, + [11224] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1388), 1, + anon_sym___extension__, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(988), 1, + STATE(702), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1384), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2130), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71468,13 +70873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71492,45 +70897,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11010] = 22, + [11331] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(835), 1, + STATE(982), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71553,13 +70958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71577,7 +70982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11117] = 22, + [11438] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -71586,34 +70991,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1378), 1, + sym_identifier, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(977), 1, + STATE(830), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71638,13 +71043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71662,45 +71067,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11224] = 22, + [11545] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1388), 1, + anon_sym___extension__, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(2128), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(990), 1, + 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1384), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2130), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71723,13 +71128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71747,45 +71152,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11331] = 22, + [11652] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(1082), 1, + STATE(1073), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71808,13 +71213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71832,7 +71237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11438] = 22, + [11759] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -71841,17 +71246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(820), 1, + STATE(825), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -71862,13 +71267,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71893,13 +71298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71917,7 +71322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11545] = 22, + [11866] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71930,13 +71335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(989), 1, + STATE(1076), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71978,13 +71383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72002,7 +71407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11652] = 22, + [11973] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72011,17 +71416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(821), 1, + STATE(826), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -72032,13 +71437,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72063,13 +71468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72087,7 +71492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11759] = 22, + [12080] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72096,34 +71501,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(702), 1, + STATE(1051), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72148,13 +71553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72172,111 +71577,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11866] = 22, + [12187] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1799), 1, sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(1108), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [11973] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(978), 1, + STATE(1054), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -72284,16 +71604,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72318,13 +71638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72342,7 +71662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12080] = 22, + [12294] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72351,34 +71671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(837), 1, + STATE(888), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72403,13 +71723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72427,7 +71747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12187] = 22, + [12401] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72436,34 +71756,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(708), 1, + STATE(1058), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72488,13 +71808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72512,7 +71832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12294] = 22, + [12508] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72521,17 +71841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1029), 1, + STATE(1059), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -72539,16 +71859,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72573,13 +71893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72597,7 +71917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12401] = 22, + [12615] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72606,17 +71926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1030), 1, + STATE(1060), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -72624,16 +71944,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72658,13 +71978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72682,7 +72002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12508] = 22, + [12722] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72691,17 +72011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(895), 1, + STATE(1061), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -72709,16 +72029,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72743,13 +72063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72767,7 +72087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12615] = 22, + [12829] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72776,17 +72096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1031), 1, + STATE(1062), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -72794,16 +72114,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72828,13 +72148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72852,7 +72172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12722] = 22, + [12936] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72861,17 +72181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1032), 1, + STATE(1063), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -72879,16 +72199,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72913,13 +72233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72937,7 +72257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12829] = 22, + [13043] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -72946,17 +72266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1033), 1, + STATE(1064), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -72964,16 +72284,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72998,13 +72318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73022,7 +72342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12936] = 22, + [13150] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73031,17 +72351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1034), 1, + STATE(1066), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73049,16 +72369,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73083,13 +72403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73107,130 +72427,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13043] = 22, + [13257] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(1035), 1, + STATE(979), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(932), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13150] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, - anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(1036), 1, - sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73253,13 +72488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73277,7 +72512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13257] = 22, + [13364] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73286,17 +72521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1037), 1, + STATE(1020), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73304,16 +72539,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73338,13 +72573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73362,7 +72597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13364] = 22, + [13471] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73371,17 +72606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1038), 1, + STATE(1024), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73389,16 +72624,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73423,13 +72658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73447,7 +72682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13471] = 22, + [13578] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73456,34 +72691,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(707), 1, - sym_expression, - STATE(714), 1, + STATE(663), 1, sym_string_literal, + STATE(892), 1, + sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73508,13 +72743,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73532,7 +72767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13578] = 22, + [13685] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73541,17 +72776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1378), 1, + sym_identifier, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(663), 1, sym_string_literal, - STATE(979), 1, + STATE(893), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73559,16 +72794,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73593,13 +72828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73617,7 +72852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13685] = 22, + [13792] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73626,17 +72861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1040), 1, + STATE(909), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73644,16 +72879,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73678,13 +72913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73702,7 +72937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13792] = 22, + [13899] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73711,17 +72946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1042), 1, + STATE(894), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73729,16 +72964,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73763,13 +72998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73787,7 +73022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13899] = 22, + [14006] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73796,17 +73031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(899), 1, + STATE(895), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73814,16 +73049,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73848,13 +73083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73872,7 +73107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14006] = 22, + [14113] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73881,17 +73116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(900), 1, + STATE(896), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73899,16 +73134,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -73933,13 +73168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73957,7 +73192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14113] = 22, + [14220] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -73966,17 +73201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(901), 1, + STATE(897), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -73984,16 +73219,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74018,13 +73253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74042,7 +73277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14220] = 22, + [14327] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74051,17 +73286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(902), 1, + STATE(898), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74069,16 +73304,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74103,13 +73338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74127,7 +73362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14327] = 22, + [14434] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74136,17 +73371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(903), 1, + STATE(899), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74154,16 +73389,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74188,13 +73423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74212,7 +73447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14434] = 22, + [14541] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74221,17 +73456,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(904), 1, + STATE(900), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74239,16 +73474,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74273,13 +73508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74297,7 +73532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14541] = 22, + [14648] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74306,17 +73541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(905), 1, + STATE(901), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74324,16 +73559,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74358,13 +73593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74382,7 +73617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14648] = 22, + [14755] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74391,17 +73626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(906), 1, + STATE(905), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74409,16 +73644,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74443,13 +73678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74467,7 +73702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14755] = 22, + [14862] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74476,15 +73711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, STATE(907), 1, sym_expression, @@ -74494,16 +73729,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74528,13 +73763,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74552,7 +73787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14862] = 22, + [14969] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74561,17 +73796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2204), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(909), 1, + STATE(885), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74579,16 +73814,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74613,13 +73848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74637,7 +73872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14969] = 22, + [15076] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74646,17 +73881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1726), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1728), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(910), 1, + STATE(902), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74664,16 +73899,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1724), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74698,13 +73933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74722,45 +73957,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15076] = 22, + [15183] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(912), 1, + STATE(984), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74783,13 +74018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74807,7 +74042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15183] = 22, + [15290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74816,17 +74051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(914), 1, + STATE(963), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -74834,16 +74069,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74868,13 +74103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74892,45 +74127,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15290] = 22, + [15397] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(915), 1, + STATE(1072), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74953,13 +74188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74977,7 +74212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15397] = 22, + [15504] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -74986,34 +74221,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(911), 1, + STATE(815), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -75038,13 +74273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75062,7 +74297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15504] = 22, + [15611] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75075,13 +74310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(967), 1, + STATE(1085), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75123,13 +74358,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(837), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(684), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15718] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1744), 1, + anon_sym___extension__, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, + anon_sym_LPAREN2, + STATE(713), 1, + sym_string_literal, + STATE(964), 1, + sym_expression, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1740), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75147,45 +74467,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15611] = 22, + [15825] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1738), 1, + sym_identifier, + STATE(663), 1, sym_string_literal, - STATE(704), 1, + STATE(1088), 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(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1392), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2166), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75208,13 +74528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75232,7 +74552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15718] = 22, + [15932] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -75241,34 +74561,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2210), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(705), 1, + STATE(697), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(713), 1, + sym_string_literal, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -75293,13 +74613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75317,45 +74637,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15825] = 22, + [16039] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1744), 1, anon_sym___extension__, ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(2142), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2144), 1, + anon_sym_LPAREN2, + STATE(713), 1, sym_string_literal, - STATE(1083), 1, + STATE(965), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1740), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75378,13 +74698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75402,7 +74722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15932] = 22, + [16146] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -75411,34 +74731,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(836), 1, + STATE(905), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -75463,13 +74783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75487,130 +74807,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16039] = 22, + [16253] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(2212), 1, + ACTIONS(1726), 1, + anon_sym___extension__, + ACTIONS(1728), 1, + anon_sym_sizeof, + ACTIONS(2162), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(705), 1, + STATE(906), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16146] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(1088), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1722), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1724), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75633,13 +74868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75657,45 +74892,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16253] = 22, + [16360] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1799), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1805), 1, + anon_sym___extension__, + ACTIONS(1807), 1, + anon_sym_sizeof, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(1079), 1, + STATE(907), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1801), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1803), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1839), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75718,13 +74953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75742,7 +74977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16360] = 22, + [16467] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -75751,34 +74986,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2206), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(819), 1, + STATE(885), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1827), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -75803,13 +75038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75827,45 +75062,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16467] = 22, + [16574] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1378), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1388), 1, + anon_sym___extension__, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(2128), 1, + anon_sym_LPAREN2, + STATE(663), 1, sym_string_literal, - STATE(1097), 1, + STATE(823), 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(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, + ACTIONS(1382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1384), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2130), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75888,13 +75123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75912,7 +75147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16574] = 22, + [16681] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -75921,17 +75156,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1799), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1805), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1807), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(912), 1, + STATE(1036), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -75939,16 +75174,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1801), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1803), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1827), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1839), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -75973,13 +75208,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(911), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75997,7 +75232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16681] = 22, + [16788] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76006,17 +75241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(913), 1, + STATE(966), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -76024,16 +75259,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76058,13 +75293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76082,7 +75317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16788] = 22, + [16895] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76091,17 +75326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(914), 1, + STATE(967), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -76109,16 +75344,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76143,13 +75378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76167,7 +75402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16895] = 22, + [17002] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76176,17 +75411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(915), 1, + STATE(968), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, @@ -76194,16 +75429,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76228,13 +75463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76252,7 +75487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17002] = 22, + [17109] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76261,34 +75496,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1060), 1, + STATE(816), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76313,13 +75548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76337,7 +75572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17109] = 22, + [17216] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76346,34 +75581,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(839), 1, + STATE(969), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76398,13 +75633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76422,7 +75657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17216] = 22, + [17323] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76431,34 +75666,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(827), 1, + STATE(970), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76483,13 +75718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76507,7 +75742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17323] = 22, + [17430] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76516,34 +75751,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(815), 1, + STATE(971), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76568,13 +75803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76592,7 +75827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17430] = 22, + [17537] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, @@ -76601,34 +75836,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1744), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2142), 1, + sym_identifier, + ACTIONS(2144), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(713), 1, sym_string_literal, - STATE(838), 1, + STATE(972), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2146), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76653,13 +75888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(835), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76677,7 +75912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17537] = 22, + [17644] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76690,13 +75925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1738), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(708), 1, + STATE(960), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76738,98 +75973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17644] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(970), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(845), 5, + STATE(837), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76856,17 +76006,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(161), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1378), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1388), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2128), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(707), 1, + STATE(691), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76877,13 +76027,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1384), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2130), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76908,13 +76058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(675), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(684), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76935,18 +76085,18 @@ static const uint16_t ts_small_parse_table[] = { [17858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2208), 1, sym_identifier, - STATE(628), 2, + STATE(620), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2223), 5, + ACTIONS(2215), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2221), 17, + ACTIONS(2213), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76964,7 +76114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2219), 33, + ACTIONS(2211), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77001,9 +76151,9 @@ static const uint16_t ts_small_parse_table[] = { [17930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2218), 1, sym_identifier, - STATE(628), 2, + STATE(622), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(99), 5, @@ -77012,7 +76162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2230), 17, + ACTIONS(2222), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77030,7 +76180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2228), 33, + ACTIONS(2220), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77067,9 +76217,9 @@ static const uint16_t ts_small_parse_table[] = { [18002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2224), 1, sym_identifier, - STATE(629), 2, + STATE(620), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(99), 5, @@ -77078,7 +76228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2236), 17, + ACTIONS(2228), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77096,7 +76246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2234), 33, + ACTIONS(2226), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77130,71 +76280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18074] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1778), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(1772), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18143] = 25, + [18074] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -77211,25 +76297,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1811), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2240), 1, + ACTIONS(1813), 1, anon_sym_RPAREN, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + ACTIONS(1938), 1, + sym_identifier, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1127), 1, + STATE(1118), 1, sym__declaration_specifiers, - STATE(1531), 1, - sym_variadic_parameter, - STATE(1603), 1, - sym_parameter_declaration, - STATE(1957), 1, + STATE(1943), 1, sym_compound_statement, ACTIONS(35), 2, anon_sym___attribute__, @@ -77237,18 +76319,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(1598), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77278,7 +76363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [18252] = 24, + [18181] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -77295,21 +76380,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1811), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1821), 1, - anon_sym_RPAREN, - ACTIONS(1946), 1, + ACTIONS(2230), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + ACTIONS(2232), 1, + anon_sym_RPAREN, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1127), 1, + STATE(1118), 1, sym__declaration_specifiers, - STATE(1957), 1, + STATE(1537), 1, + sym_variadic_parameter, + STATE(1598), 1, + sym_parameter_declaration, + STATE(1943), 1, sym_compound_statement, ACTIONS(35), 2, anon_sym___attribute__, @@ -77317,21 +76406,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1603), 2, - sym_variadic_parameter, - sym_parameter_declaration, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77361,10 +76447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [18359] = 3, + [18290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 22, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1770), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77380,14 +76474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2244), 34, + ACTIONS(1764), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77403,9 +76493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77422,10 +76511,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18423] = 3, + [18359] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2250), 1, + anon_sym___declspec, + STATE(711), 1, + sym_alignas_qualifier, + ACTIONS(2244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2253), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2236), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(626), 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(2238), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2241), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2234), 17, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [18439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 22, + ACTIONS(2256), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77441,14 +76599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2248), 34, + ACTIONS(2258), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77464,9 +76618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77483,10 +76636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18487] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [18503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2250), 22, + ACTIONS(2260), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77509,7 +76667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2252), 34, + ACTIONS(2262), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77544,10 +76702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18551] = 3, + [18567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 22, + ACTIONS(2264), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77570,7 +76728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2256), 34, + ACTIONS(2266), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77605,10 +76763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18615] = 3, + [18631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 18, + ACTIONS(2268), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77624,10 +76782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2260), 38, + ACTIONS(2270), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77643,8 +76805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77661,15 +76824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18679] = 3, + [18695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 22, + ACTIONS(2272), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77692,7 +76850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2264), 34, + ACTIONS(2274), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77727,10 +76885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18743] = 3, + [18759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 22, + ACTIONS(2276), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77753,7 +76911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2268), 34, + ACTIONS(2278), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77788,10 +76946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18807] = 3, + [18823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 22, + ACTIONS(2280), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77814,7 +76972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2272), 34, + ACTIONS(2282), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77849,10 +77007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18871] = 3, + [18887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 18, + ACTIONS(2284), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77868,10 +77026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2276), 38, + ACTIONS(2286), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77887,8 +77049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77905,15 +77068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18935] = 3, + [18951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 22, + ACTIONS(2288), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77936,7 +77094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2280), 34, + ACTIONS(2290), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77971,10 +77129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18999] = 3, + [19015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 22, + ACTIONS(2292), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77990,14 +77148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2284), 34, + ACTIONS(2294), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78013,9 +77167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -78032,10 +77185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19063] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [19079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 22, + ACTIONS(2296), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78058,7 +77216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2288), 34, + ACTIONS(2298), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78093,75 +77251,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19127] = 11, + [19143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2306), 1, - anon_sym___declspec, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(2300), 2, + ACTIONS(2300), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2309), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2292), 5, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_DOT, + sym_identifier, + ACTIONS(2302), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - STATE(646), 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(2294), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - ACTIONS(2297), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2290), 17, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, [19207] = 22, ACTIONS(3), 1, sym_comment, @@ -78175,21 +77325,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, + ACTIONS(430), 1, anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(299), 1, + STATE(294), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78197,7 +77347,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78205,13 +77355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78246,6 +77396,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(39), 1, anon_sym___declspec, + ACTIONS(43), 1, + anon_sym_LBRACE, ACTIONS(53), 1, sym_primitive_type, ACTIONS(55), 1, @@ -78254,21 +77406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, - anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(301), 1, + STATE(335), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78276,7 +77426,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78284,13 +77434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78333,21 +77483,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(133), 1, + ACTIONS(430), 1, anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(137), 1, + STATE(301), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78355,7 +77505,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(654), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78363,13 +77513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78412,21 +77562,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, + ACTIONS(133), 1, anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(275), 1, + STATE(130), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78434,7 +77584,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78442,13 +77592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78483,6 +77633,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(39), 1, anon_sym___declspec, + ACTIONS(43), 1, + anon_sym_LBRACE, ACTIONS(53), 1, sym_primitive_type, ACTIONS(55), 1, @@ -78491,21 +77643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, - anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(307), 1, + STATE(325), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78513,7 +77663,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78521,13 +77671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78570,21 +77720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, + ACTIONS(133), 1, anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(264), 1, + STATE(140), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78592,7 +77742,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(650), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78600,13 +77750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78641,8 +77791,6 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, ACTIONS(53), 1, sym_primitive_type, ACTIONS(55), 1, @@ -78651,19 +77799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, + ACTIONS(378), 1, + anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(321), 1, + STATE(280), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78671,7 +77821,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(657), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78679,13 +77829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78728,21 +77878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(133), 1, + ACTIONS(378), 1, anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(127), 1, + STATE(272), 1, sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78750,7 +77900,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -78758,13 +77908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78794,56 +77944,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20015] = 22, + [20015] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2316), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2319), 1, anon_sym___declspec, - ACTIONS(53), 1, + ACTIONS(2322), 1, + anon_sym_LBRACE, + ACTIONS(2330), 1, sym_primitive_type, - ACTIONS(55), 1, + ACTIONS(2333), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(2336), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(2339), 1, anon_sym_union, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - STATE(132), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(2313), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(2327), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(656), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(2324), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78851,7 +77999,18 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(2307), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2310), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -78862,8 +78021,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + [20113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2342), 45, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -78873,7 +78070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20116] = 22, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + [20175] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -78886,21 +78093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(133), 1, - anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1811), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1938), 1, sym_identifier, - STATE(124), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1118), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78908,21 +78113,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1748), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78952,13 +78157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20217] = 22, + [20273] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, ACTIONS(53), 1, sym_primitive_type, ACTIONS(55), 1, @@ -78969,39 +78172,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1811), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2346), 1, sym_identifier, - STATE(343), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1118), 1, sym__declaration_specifiers, + STATE(1695), 1, + sym_variadic_parameter, + STATE(1748), 1, + sym_parameter_declaration, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79031,7 +78235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20318] = 22, + [20373] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -79044,21 +78248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, - anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(293), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79066,7 +78266,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(647), 2, + STATE(643), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -79074,13 +78274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79110,7 +78310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20419] = 22, + [20468] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -79123,21 +78323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, - anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(277), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79145,7 +78341,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(661), 2, + STATE(642), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -79153,13 +78349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79189,13 +78385,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20520] = 22, + [20563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2350), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2348), 32, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [20624] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, ACTIONS(53), 1, sym_primitive_type, ACTIONS(55), 1, @@ -79206,17 +78458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(324), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79224,7 +78474,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(644), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -79232,13 +78482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79268,7 +78518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20621] = 22, + [20719] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -79281,21 +78531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, - anon_sym_LBRACE, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(284), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79303,7 +78549,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(640), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -79311,13 +78557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79347,13 +78593,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20722] = 22, + [20814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1736), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1734), 32, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [20875] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, ACTIONS(53), 1, sym_primitive_type, ACTIONS(55), 1, @@ -79364,17 +78666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(345), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79382,7 +78682,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(660), 2, + STATE(639), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, @@ -79390,13 +78690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79426,7 +78726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20823] = 22, + [20970] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -79441,40 +78741,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2312), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1127), 1, + STATE(1156), 1, sym__declaration_specifiers, - STATE(1743), 1, - sym_parameter_declaration, - STATE(1748), 1, - sym_variadic_parameter, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(645), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79504,54 +78801,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20923] = 21, + [21065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, - sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1732), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2329), 1, - anon_sym___declspec, - ACTIONS(2332), 1, anon_sym_LBRACE, - ACTIONS(2340), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1730), 32, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21126] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(53), 1, sym_primitive_type, - ACTIONS(2343), 1, + ACTIONS(55), 1, anon_sym_enum, - ACTIONS(2346), 1, + ACTIONS(57), 1, anon_sym_struct, - ACTIONS(2349), 1, + ACTIONS(59), 1, anon_sym_union, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1938), 1, + sym_identifier, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1156), 1, sym__declaration_specifiers, - ACTIONS(2323), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2337), 2, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(641), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(2334), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79559,18 +78912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2317), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - ACTIONS(2320), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -79581,7 +78923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21021] = 21, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [21221] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -79596,17 +78949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1127), 1, + STATE(1156), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79614,21 +78965,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1743), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(646), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79658,79 +79009,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [21119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2354), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2352), 45, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - [21181] = 8, + [21316] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 1, + ACTIONS(2359), 1, anon_sym_static, - STATE(703), 1, + STATE(700), 1, sym_alignas_qualifier, - ACTIONS(2366), 2, + ACTIONS(2362), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(667), 2, + STATE(662), 2, sym_type_qualifier, aux_sym_array_declarator_repeat1, - ACTIONS(2360), 10, + ACTIONS(2356), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79741,7 +79033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2356), 18, + ACTIONS(2352), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -79760,7 +79052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(2358), 19, + ACTIONS(2354), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -79780,184 +79072,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [21252] = 3, + [21387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1738), 32, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(2365), 1, sym_identifier, - [21313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2369), 32, + ACTIONS(2369), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [21374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1744), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2367), 29, + anon_sym_DOT_DOT_DOT, + 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_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1742), 32, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [21435] = 3, + anon_sym_DASH_GT, + [21453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 18, + ACTIONS(2348), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79976,7 +79154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2371), 34, + ACTIONS(2350), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80011,18 +79189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21495] = 7, + [21513] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - ACTIONS(2380), 2, + ACTIONS(2378), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2375), 7, + ACTIONS(2373), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80030,7 +79208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2377), 10, + ACTIONS(2375), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80041,7 +79219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2373), 30, + ACTIONS(2371), 30, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, @@ -80072,20 +79250,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21563] = 6, + [21581] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 1, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1938), 1, sym_identifier, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2387), 16, + STATE(704), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, + sym_type_specifier, + STATE(1243), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(770), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(695), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [21672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -80102,10 +79343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2385), 29, + sym_identifier, + ACTIONS(2383), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80132,151 +79378,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21629] = 19, + [21731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1255), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(2385), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [21720] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1262), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [21811] = 3, + ACTIONS(2387), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21790] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2389), 18, @@ -80332,7 +79490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21870] = 3, + [21849] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2393), 18, @@ -80388,7 +79546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21929] = 3, + [21908] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2397), 18, @@ -80444,7 +79602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21988] = 3, + [21967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2401), 18, @@ -80500,7 +79658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22047] = 3, + [22026] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2405), 18, @@ -80556,7 +79714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22106] = 3, + [22085] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2409), 18, @@ -80612,10 +79770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22165] = 3, + [22144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1778), 18, + ACTIONS(1770), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80634,7 +79792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1772), 33, + ACTIONS(1764), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80668,7 +79826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22224] = 19, + [22203] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -80683,15 +79841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1267), 1, + STATE(1258), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -80704,13 +79862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80740,7 +79898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [22315] = 3, + [22294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2413), 18, @@ -80796,7 +79954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22374] = 3, + [22353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2417), 18, @@ -80852,7 +80010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22433] = 3, + [22412] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2421), 18, @@ -80908,7 +80066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22492] = 3, + [22471] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2425), 18, @@ -80964,7 +80122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22551] = 3, + [22530] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2429), 18, @@ -81020,7 +80178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22610] = 3, + [22589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2433), 18, @@ -81076,10 +80234,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22669] = 3, + [22648] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 18, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1938), 1, + sym_identifier, + STATE(704), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, + sym_type_specifier, + STATE(1240), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(770), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(695), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [22739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1770), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81098,7 +80328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2439), 33, + ACTIONS(1764), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81132,7 +80362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22728] = 19, + [22798] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -81147,15 +80377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1246), 1, + STATE(1259), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81168,13 +80398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81204,119 +80434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [22819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2441), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2443), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1778), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(1772), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22937] = 19, + [22889] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -81331,15 +80449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1252), 1, + STATE(1248), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81352,13 +80470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81388,7 +80506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23028] = 19, + [22980] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -81403,15 +80521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1269), 1, + STATE(1261), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81424,13 +80542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81460,7 +80578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23119] = 19, + [23071] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -81475,15 +80593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1261), 1, + STATE(1251), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81496,13 +80614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81532,7 +80650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23210] = 19, + [23162] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -81547,15 +80665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(720), 1, sym_type_specifier, - STATE(1259), 1, + STATE(1253), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81568,13 +80686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(695), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81604,10 +80722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23301] = 3, + [23253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 18, + ACTIONS(2437), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81626,7 +80744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2447), 33, + ACTIONS(2439), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81660,77 +80778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2451), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2449), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23418] = 8, + [23312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2453), 17, + ACTIONS(2441), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81748,7 +80808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2455), 26, + ACTIONS(2443), 28, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81775,10 +80835,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23486] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [23378] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 17, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2451), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81796,14 +80870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2467), 33, + ACTIONS(2453), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81811,9 +80884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81826,26 +80897,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, - [23544] = 8, + [23446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2469), 17, + ACTIONS(2457), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81863,13 +80918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2471), 26, + ACTIONS(2459), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81877,7 +80933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81890,10 +80948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23612] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 19, + ACTIONS(2463), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -81913,7 +80975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1714), 31, + ACTIONS(2461), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -81927,40 +80989,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23670] = 8, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [23562] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1938), 1, + sym_identifier, + STATE(704), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(711), 1, + sym_alignas_qualifier, + STATE(719), 1, + sym_type_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(770), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [23650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2473), 17, + ACTIONS(2465), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81978,13 +81098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2475), 26, + ACTIONS(2467), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81992,7 +81113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -82005,22 +81128,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23738] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2477), 17, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2469), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82038,7 +81165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2479), 26, + ACTIONS(2471), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82065,10 +81192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23806] = 3, + [23776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 17, + ACTIONS(2473), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82086,7 +81213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2483), 33, + ACTIONS(2475), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82120,22 +81247,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23864] = 8, + [23834] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2485), 17, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2477), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82153,7 +81280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2487), 26, + ACTIONS(2479), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82180,19 +81307,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23932] = 7, + [23902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1706), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [23960] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2489), 17, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2481), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82210,7 +81395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2491), 28, + ACTIONS(2483), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82237,12 +81422,22 @@ 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, - [23998] = 3, + [24028] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 17, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2485), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82260,14 +81455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2495), 33, + ACTIONS(2487), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -82275,9 +81469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -82290,151 +81482,19 @@ 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, - [24056] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(724), 1, - sym_type_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(646), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [24144] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_field_declaration_list, - STATE(779), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2499), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2497), 37, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24209] = 7, + [24096] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - STATE(738), 1, + STATE(728), 1, sym_field_declaration_list, - STATE(743), 1, + STATE(749), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2505), 7, + ACTIONS(2491), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82442,7 +81502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2503), 37, + ACTIONS(2489), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -82480,36 +81540,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24274] = 11, + [24161] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(2495), 1, sym_identifier, - ACTIONS(2522), 1, + ACTIONS(2510), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(754), 1, + STATE(750), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2519), 2, + ACTIONS(2507), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(712), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2517), 4, + ACTIONS(2505), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2510), 6, + ACTIONS(2498), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2512), 10, + ACTIONS(2500), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82520,7 +81580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2515), 21, + ACTIONS(2503), 21, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, @@ -82542,120 +81602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24347] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2387), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(2385), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24408] = 3, + [24234] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(2524), 42, - anon_sym___extension__, - anon_sym_extern, + STATE(730), 1, + sym_field_declaration_list, + STATE(766), 1, + sym_attribute_specifier, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2451), 7, + ACTIONS(2514), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82663,11 +81622,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2449), 42, + ACTIONS(2512), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82702,33 +81659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [24522] = 7, + [24299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - STATE(741), 1, - sym_field_declaration_list, - STATE(781), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2530), 7, + ACTIONS(2518), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2528), 37, + anon_sym_LBRACE, + ACTIONS(2516), 42, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82753,137 +81700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thread, anon_sym_const, anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24587] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 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___attribute, - ACTIONS(1772), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24652] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_EQ, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2534), 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(1778), 14, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - ACTIONS(1772), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24717] = 3, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 7, + ACTIONS(2463), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82891,7 +81725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1714), 42, + ACTIONS(2461), 42, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82934,19 +81768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24774] = 7, + [24413] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - STATE(739), 1, + STATE(725), 1, sym_field_declaration_list, - STATE(761), 1, + STATE(756), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2538), 7, + ACTIONS(2522), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82954,7 +81788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2536), 37, + ACTIONS(2520), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -82992,50 +81826,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24839] = 11, + [24478] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - sym_identifier, - ACTIONS(2555), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2552), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(713), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2550), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2543), 6, + ACTIONS(2493), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_field_declaration_list, + STATE(734), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2526), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2545), 10, + anon_sym_COLON, + ACTIONS(2524), 37, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - ACTIONS(2548), 21, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83044,6 +81857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -83054,19 +81871,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24912] = 7, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [24543] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - STATE(733), 1, + STATE(727), 1, sym_field_declaration_list, - STATE(764), 1, + STATE(759), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2559), 7, + ACTIONS(2530), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83074,7 +81904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2557), 37, + ACTIONS(2528), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -83112,36 +81942,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24977] = 11, + [24608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2563), 5, + ACTIONS(1708), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(725), 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(2561), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1706), 42, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83149,10 +81966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83162,7 +81980,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24665] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + sym_identifier, + ACTIONS(2547), 1, + sym_primitive_type, + STATE(711), 1, + sym_alignas_qualifier, + STATE(745), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2544), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(665), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2535), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2537), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83173,14 +82036,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25049] = 11, + ACTIONS(2540), 21, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24738] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2369), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(2367), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24799] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2549), 1, + anon_sym_EQ, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2551), 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(1770), 14, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + sym_identifier, + ACTIONS(1764), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24864] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1782), 1, + anon_sym_EQ, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1786), 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(1770), 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___attribute, + ACTIONS(1764), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24929] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -83188,13 +82245,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2567), 5, + ACTIONS(2555), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(646), 7, + STATE(626), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83202,7 +82259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2565), 9, + ACTIONS(2553), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83234,17 +82291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25121] = 3, + [25001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 6, + ACTIONS(1732), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1738), 42, + ACTIONS(1730), 42, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83287,36 +82344,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25177] = 11, + [25057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2571), 5, + ACTIONS(1736), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(728), 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(2569), 9, + anon_sym_LBRACK_LBRACK, + ACTIONS(1734), 42, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83324,10 +82367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83337,8 +82381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -83348,14 +82390,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25249] = 11, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25113] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -83363,13 +82412,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2575), 5, + ACTIONS(2559), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(646), 7, + STATE(721), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83377,7 +82426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2573), 9, + ACTIONS(2557), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83409,75 +82458,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25321] = 3, + [25185] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2577), 42, - anon_sym___extension__, - anon_sym_extern, + STATE(711), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1744), 6, + ACTIONS(2563), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1742), 42, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(716), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2561), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83485,11 +82495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(47), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83499,6 +82508,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -83508,33 +82519,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25433] = 5, + [25257] = 11, ACTIONS(3), 1, sym_comment, - STATE(742), 1, - sym_attribute_specifier, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + STATE(711), 1, + sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2583), 7, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2567), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2581), 37, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, + STATE(626), 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(2565), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83542,11 +82556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(47), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83556,6 +82569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -83565,29 +82580,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25492] = 5, + [25329] = 3, ACTIONS(3), 1, sym_comment, - STATE(746), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2587), 7, + ACTIONS(2571), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2585), 37, + ACTIONS(2569), 42, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83622,16 +82629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25551] = 5, + [25385] = 5, ACTIONS(3), 1, sym_comment, - STATE(748), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2591), 7, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2575), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83639,9 +82651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2589), 37, + ACTIONS(2573), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83650,10 +82664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -83677,15 +82687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25610] = 5, + [25444] = 5, ACTIONS(3), 1, sym_comment, - STATE(760), 1, + STATE(769), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2595), 7, + ACTIONS(2582), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83693,7 +82703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2593), 37, + ACTIONS(2580), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -83731,15 +82741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25669] = 5, + [25503] = 5, ACTIONS(3), 1, sym_comment, - STATE(782), 1, + STATE(773), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2599), 7, + ACTIONS(2586), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83747,7 +82757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2597), 37, + ACTIONS(2584), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -83785,17 +82795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25728] = 5, + [25562] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2605), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2603), 7, + STATE(738), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2590), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83803,11 +82811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2601), 35, + ACTIONS(2588), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83816,6 +82822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -83839,15 +82849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25787] = 5, + [25621] = 5, ACTIONS(3), 1, sym_comment, - STATE(762), 1, + STATE(751), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2610), 7, + ACTIONS(2594), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83855,7 +82865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2608), 37, + ACTIONS(2592), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -83893,15 +82903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25846] = 5, + [25680] = 5, ACTIONS(3), 1, sym_comment, - STATE(763), 1, + STATE(755), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2614), 7, + ACTIONS(2598), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83909,7 +82919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2612), 37, + ACTIONS(2596), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -83947,15 +82957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25905] = 5, + [25739] = 5, ACTIONS(3), 1, sym_comment, - STATE(780), 1, + STATE(757), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2618), 7, + ACTIONS(2602), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83963,7 +82973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2616), 37, + ACTIONS(2600), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84001,15 +83011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25964] = 5, + [25798] = 5, ACTIONS(3), 1, sym_comment, - STATE(765), 1, + STATE(758), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2622), 7, + ACTIONS(2606), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84017,7 +83027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2620), 37, + ACTIONS(2604), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84055,15 +83065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26023] = 5, + [25857] = 5, ACTIONS(3), 1, sym_comment, - STATE(744), 1, + STATE(760), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2626), 7, + ACTIONS(2610), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84071,7 +83081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2624), 37, + ACTIONS(2608), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84109,10 +83119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26082] = 3, + [25916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 7, + STATE(735), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2614), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84120,11 +83135,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2628), 39, + ACTIONS(2612), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84160,10 +83173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26136] = 3, + [25975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2634), 7, + STATE(763), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2618), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84171,11 +83189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2632), 39, + ACTIONS(2616), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84211,10 +83227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26190] = 3, + [26034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 7, + ACTIONS(2622), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84222,7 +83238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2636), 39, + ACTIONS(2620), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84262,17 +83278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26244] = 5, + [26088] = 3, ACTIONS(3), 1, sym_comment, - STATE(750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2642), 7, + ACTIONS(2626), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84280,7 +83289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2640), 34, + ACTIONS(2624), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84293,6 +83302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84314,11 +83327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26302] = 3, + [26142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 7, + STATE(742), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2630), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84326,7 +83347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2646), 39, + ACTIONS(2628), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84339,10 +83360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84364,19 +83381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26356] = 5, + [26200] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, + ACTIONS(2638), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2652), 7, + ACTIONS(2636), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84384,7 +83400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2650), 34, + ACTIONS(2634), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84419,10 +83435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26414] = 3, + [26258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 7, + ACTIONS(2642), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84430,7 +83446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2656), 39, + ACTIONS(2640), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84470,26 +83486,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26468] = 6, + [26312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - sym_primitive_type, - STATE(736), 1, + STATE(737), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2605), 4, + ACTIONS(2648), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2663), 6, + ACTIONS(2646), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2660), 34, + anon_sym_COLON, + ACTIONS(2644), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84524,17 +83539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26528] = 5, + [26370] = 3, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2668), 7, + ACTIONS(2652), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84542,7 +83550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2666), 34, + ACTIONS(2650), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84555,59 +83563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [26586] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2672), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2670), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84629,18 +83588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26644] = 5, + [26424] = 5, ACTIONS(3), 1, sym_comment, - STATE(770), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2678), 4, + ACTIONS(2638), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2676), 7, + ACTIONS(2656), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84648,7 +83608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2674), 34, + ACTIONS(2654), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84683,17 +83643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26702] = 5, + [26482] = 5, ACTIONS(3), 1, sym_comment, - STATE(771), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2684), 4, + ACTIONS(2638), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2682), 7, + ACTIONS(2660), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84701,7 +83661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2680), 34, + ACTIONS(2658), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84736,17 +83696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26760] = 5, + [26540] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(764), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, + ACTIONS(2666), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2688), 7, + ACTIONS(2664), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84754,7 +83714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2686), 34, + ACTIONS(2662), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84789,17 +83749,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26818] = 5, + [26598] = 5, ACTIONS(3), 1, sym_comment, - STATE(747), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2694), 4, + ACTIONS(2672), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2692), 7, + ACTIONS(2670), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84807,7 +83767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2690), 34, + ACTIONS(2668), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84842,17 +83802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26876] = 5, + [26656] = 5, ACTIONS(3), 1, sym_comment, - STATE(751), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2700), 4, + ACTIONS(2638), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2698), 7, + ACTIONS(2676), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84860,7 +83820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2696), 34, + ACTIONS(2674), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84895,10 +83855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26934] = 3, + [26714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 7, + ACTIONS(2680), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84906,7 +83866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2702), 39, + ACTIONS(2678), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84946,10 +83906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26988] = 3, + [26768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 7, + ACTIONS(2684), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84957,7 +83917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2706), 39, + ACTIONS(2682), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84997,10 +83957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27042] = 3, + [26822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 7, + ACTIONS(2688), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85008,7 +83968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2710), 39, + ACTIONS(2686), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85048,10 +84008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27096] = 3, + [26876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2716), 7, + ACTIONS(2692), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85059,7 +84019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2714), 39, + ACTIONS(2690), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85099,69 +84059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27150] = 3, + [26930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2720), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2718), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(2573), 1, + sym_primitive_type, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2577), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [27204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 7, + ACTIONS(2697), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2722), 39, + ACTIONS(2694), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85174,10 +84091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85199,12 +84112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [27258] = 3, + [26990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 7, + ACTIONS(2702), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85212,7 +84124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2726), 39, + ACTIONS(2700), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85252,10 +84164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27312] = 3, + [27044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 7, + ACTIONS(2706), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85263,7 +84175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2730), 39, + ACTIONS(2704), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85303,10 +84215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27366] = 3, + [27098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 7, + ACTIONS(2710), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85314,7 +84226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2734), 39, + ACTIONS(2708), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85354,26 +84266,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27420] = 6, + [27152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2712), 1, anon_sym_LPAREN2, - STATE(768), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1788), 4, + ACTIONS(1780), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1786), 6, + ACTIONS(1778), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1770), 34, + ACTIONS(1762), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85408,10 +84320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [27480] = 3, + [27212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 7, + ACTIONS(2717), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85419,7 +84331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2741), 39, + ACTIONS(2715), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85459,17 +84371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27534] = 5, + [27266] = 3, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2747), 7, + ACTIONS(2721), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85477,7 +84382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2745), 34, + ACTIONS(2719), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85490,6 +84395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85511,11 +84420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27592] = 3, + [27320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 7, + ACTIONS(2725), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85523,7 +84433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2749), 39, + ACTIONS(2723), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85563,17 +84473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27646] = 5, + [27374] = 3, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2755), 7, + ACTIONS(2729), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85581,7 +84484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2753), 34, + ACTIONS(2727), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85594,6 +84497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85615,18 +84522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27704] = 5, + [27428] = 3, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2759), 7, + ACTIONS(2733), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85634,7 +84535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2757), 34, + ACTIONS(2731), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85647,6 +84548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85668,11 +84573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27762] = 3, + [27482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 7, + ACTIONS(2737), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85680,7 +84586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2690), 39, + ACTIONS(2735), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85720,10 +84626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27816] = 3, + [27536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 7, + ACTIONS(2741), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85731,7 +84637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2761), 39, + ACTIONS(2739), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85771,10 +84677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27870] = 3, + [27590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 7, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2638), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2745), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85782,7 +84695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2765), 39, + ACTIONS(2743), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85795,10 +84708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85820,12 +84729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [27924] = 3, + [27648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 7, + ACTIONS(2749), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85833,7 +84741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2769), 39, + ACTIONS(2747), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85873,10 +84781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27978] = 3, + [27702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 7, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2638), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2753), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85884,7 +84799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2773), 39, + ACTIONS(2751), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85897,10 +84812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85922,12 +84833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28032] = 3, + [27760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 7, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2638), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2757), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85935,7 +84852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2777), 39, + ACTIONS(2755), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85948,10 +84865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85973,12 +84886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28086] = 3, + [27818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 7, + ACTIONS(2761), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85986,7 +84898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2781), 39, + ACTIONS(2759), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86026,10 +84938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28140] = 3, + [27872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 7, + STATE(741), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2767), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2765), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86037,7 +84956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2785), 39, + ACTIONS(2763), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86050,10 +84969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86075,12 +84990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28194] = 3, + [27930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 7, + ACTIONS(2771), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86088,7 +85002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2789), 39, + ACTIONS(2769), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86128,10 +85042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28248] = 3, + [27984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 7, + ACTIONS(2775), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86139,7 +85053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2793), 39, + ACTIONS(2773), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86179,10 +85093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28302] = 3, + [28038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 7, + ACTIONS(2646), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86190,7 +85104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2797), 39, + ACTIONS(2644), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86230,100 +85144,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28356] = 22, + [28092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(2805), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1369), 1, - sym__declarator, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1992), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2803), 2, + ACTIONS(2779), 7, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2807), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(934), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [28447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2817), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2777), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86345,35 +85194,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28500] = 3, + [28146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(2783), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2819), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2781), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86395,35 +85245,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28553] = 3, + [28200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2787), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2823), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2785), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86445,35 +85296,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28606] = 3, + [28254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(2791), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2827), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2789), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86495,71 +85347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28659] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - ACTIONS(1798), 1, - anon_sym_COLON, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1772), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28722] = 3, + [28308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 1, + ACTIONS(2795), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2831), 44, + ACTIONS(2793), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86604,12 +85398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28775] = 3, + [28361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(2799), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2835), 44, + ACTIONS(2797), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86654,12 +85448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28828] = 3, + [28414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2803), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2839), 44, + ACTIONS(2801), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86704,14 +85498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28881] = 8, + [28467] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1782), 1, anon_sym_EQ, - ACTIONS(1796), 1, + ACTIONS(1790), 1, anon_sym_COLON, - STATE(630), 1, + STATE(621), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -86719,7 +85513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86730,7 +85524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(1770), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86743,7 +85537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(1764), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86759,45 +85553,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28944] = 12, + [28530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(2807), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2843), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(2805), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(728), 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(2569), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86807,8 +85587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86818,12 +85596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29015] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(2811), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 44, + ACTIONS(2809), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86868,12 +85653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29068] = 3, + [28636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2849), 44, + ACTIONS(2813), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86918,14 +85703,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29121] = 8, + [28689] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1126), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2817), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2563), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(716), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2561), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [28760] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1782), 1, anon_sym_EQ, - ACTIONS(1792), 1, + ACTIONS(1788), 1, anon_sym_COLON, - STATE(630), 1, + STATE(621), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -86933,7 +85777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86944,7 +85788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(1770), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86957,7 +85801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(1764), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86973,59 +85817,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29184] = 22, + [28823] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1815), 1, anon_sym_LPAREN2, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2805), 1, + ACTIONS(2823), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1368), 1, + STATE(1367), 1, sym__declarator, - STATE(1418), 1, + STATE(1398), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - STATE(1992), 1, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2853), 2, + ACTIONS(2821), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2855), 2, + ACTIONS(2825), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(783), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(936), 2, + ACTIONS(2829), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(926), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + STATE(939), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -87042,45 +85886,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29275] = 12, + [28914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(2835), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2857), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(2833), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(728), 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(2569), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87090,8 +85920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -87101,14 +85929,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29346] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28967] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1782), 1, anon_sym_EQ, - ACTIONS(1800), 1, + ACTIONS(1784), 1, anon_sym_COLON, - STATE(630), 1, + STATE(621), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -87116,7 +85951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87127,7 +85962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(1770), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87140,7 +85975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(1764), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -87156,16 +85991,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29409] = 12, + [29030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1356), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29083] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN2, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(711), 1, + sym_alignas_qualifier, + STATE(989), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1366), 1, + sym__declarator, + STATE(1423), 1, + sym__abstract_declarator, + STATE(1452), 1, + sym_parameter_list, + STATE(1984), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2829), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2837), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2839), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(784), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(927), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2827), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [29174] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, + ACTIONS(2841), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -87173,10 +86127,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2571), 2, + ACTIONS(2563), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(728), 7, + STATE(716), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -87184,7 +86138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2569), 8, + ACTIONS(2561), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -87215,14 +86169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29480] = 8, + [29245] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1782), 1, anon_sym_EQ, - ACTIONS(2861), 1, + ACTIONS(1794), 1, anon_sym_COLON, - STATE(630), 1, + STATE(621), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -87230,7 +86184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87241,7 +86195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(1770), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87254,7 +86208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(1764), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -87263,19 +86217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29543] = 3, + [29308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, + ACTIONS(1362), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1312), 44, + ACTIONS(1360), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87320,12 +86274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29596] = 3, + [29361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(1272), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1356), 44, + ACTIONS(1270), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87370,14 +86324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29649] = 8, + [29414] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1782), 1, anon_sym_EQ, - ACTIONS(1802), 1, + ACTIONS(1792), 1, anon_sym_COLON, - STATE(630), 1, + STATE(621), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -87385,7 +86339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87396,7 +86350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(1770), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87409,7 +86363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(1764), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -87425,12 +86379,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29712] = 3, + [29477] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1782), 1, + anon_sym_EQ, + ACTIONS(2843), 1, + anon_sym_COLON, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1786), 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(1770), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1764), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 1, + ACTIONS(1288), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1368), 44, + ACTIONS(1286), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87475,31 +86484,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29765] = 3, + [29593] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1376), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2845), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2563), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(716), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2561), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87509,6 +86532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -87518,19 +86543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29818] = 3, + [29664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(1292), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 44, + ACTIONS(1290), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87575,12 +86593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29871] = 3, + [29717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 1, + ACTIONS(1320), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1320), 44, + ACTIONS(1318), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87625,12 +86643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29924] = 3, + [29770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(2849), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 44, + ACTIONS(2847), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87675,12 +86693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29977] = 3, + [29823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2853), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 44, + ACTIONS(2851), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87725,12 +86743,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30030] = 3, + [29876] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2871), 44, + ACTIONS(2855), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2563), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(716), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2561), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [29947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2859), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2857), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87775,45 +86852,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30083] = 12, + [30000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(2863), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2875), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(2861), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(728), 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(2569), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87823,8 +86886,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -87834,85 +86895,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [30154] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 9, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2471), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30220] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2888), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2881), 3, - anon_sym___attribute__, - anon_sym___attribute, - sym_identifier, - ACTIONS(2884), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2891), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(2886), 31, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2865), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87942,55 +86951,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [30278] = 14, + sym_identifier, + [30106] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + ACTIONS(2873), 1, + anon_sym_AMP_AMP, + ACTIONS(2875), 1, + anon_sym_PIPE, + ACTIONS(2877), 1, + anon_sym_CARET, + ACTIONS(2879), 1, + anon_sym_AMP, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2469), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2471), 18, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88002,54 +87015,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30352] = 13, + sym_identifier, + [30188] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + ACTIONS(2875), 1, + anon_sym_PIPE, + ACTIONS(2877), 1, + anon_sym_CARET, + ACTIONS(2879), 1, + anon_sym_AMP, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2469), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2895), 2, + ACTIONS(2881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2471), 21, + ACTIONS(2471), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88061,62 +87078,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30424] = 20, + sym_identifier, + [30268] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_AMP_AMP, - ACTIONS(2907), 1, - anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(2877), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(2879), 1, anon_sym_AMP, - ACTIONS(2915), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2913), 2, - anon_sym___attribute, + ACTIONS(2469), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2901), 16, + ACTIONS(2471), 19, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88127,114 +87140,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30510] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(2926), 1, - anon_sym_COLON, - STATE(774), 1, - sym_attribute_specifier, - STATE(879), 1, - sym_enumerator_list, - ACTIONS(2921), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2919), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, sym_identifier, - [30572] = 19, + [30346] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_AMP_AMP, - ACTIONS(2907), 1, - anon_sym_PIPE, - ACTIONS(2909), 1, - anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(2879), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2930), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2928), 17, + ACTIONS(2469), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2471), 19, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88246,52 +87201,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30656] = 11, + sym_identifier, + [30422] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2899), 2, + ACTIONS(2881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2883), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 7, + ACTIONS(2469), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2471), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88303,50 +87261,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30724] = 9, + sym_identifier, + [30496] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2879), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 11, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(2871), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2469), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2471), 21, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88358,113 +87320,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30788] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2932), 3, - anon_sym___attribute__, - anon_sym___attribute, sym_identifier, - ACTIONS(2935), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2942), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(2937), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [30846] = 20, + [30568] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2954), 1, - anon_sym_AMP_AMP, - ACTIONS(2956), 1, - anon_sym_PIPE, - ACTIONS(2958), 1, - anon_sym_CARET, - ACTIONS(2960), 1, - anon_sym_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2946), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2964), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2966), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2944), 16, + ACTIONS(2469), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2471), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88476,29 +87378,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30932] = 9, + [30636] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2950), 3, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 11, + ACTIONS(2469), 9, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88531,59 +87434,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30996] = 18, + [30702] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2954), 1, + ACTIONS(2873), 1, anon_sym_AMP_AMP, - ACTIONS(2956), 1, + ACTIONS(2875), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(2877), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(2879), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(2893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2895), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2891), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 18, + ACTIONS(2889), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88595,58 +87500,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31078] = 17, + [30788] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2956), 1, + ACTIONS(2873), 1, + anon_sym_AMP_AMP, + ACTIONS(2875), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(2877), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(2879), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(2893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2895), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2899), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2897), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88658,47 +87566,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31158] = 15, + [30874] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2905), 1, + anon_sym_PIPE, + ACTIONS(2907), 1, + anon_sym_CARET, + ACTIONS(2909), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2469), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym___attribute, - anon_sym_EQ, ACTIONS(2471), 19, anon_sym_COMMA, anon_sym_RPAREN, @@ -88719,55 +87629,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31234] = 15, + [30954] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2960), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, - aux_sym_preproc_elif_token1, + ACTIONS(2469), 5, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, anon_sym_EQ, ACTIONS(2471), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88779,55 +87689,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31310] = 14, + [31028] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + ACTIONS(2873), 1, + anon_sym_AMP_AMP, + ACTIONS(2875), 1, + anon_sym_PIPE, + ACTIONS(2877), 1, + anon_sym_CARET, + ACTIONS(2879), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + anon_sym_PIPE_PIPE, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2921), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2919), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88840,53 +87754,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31384] = 13, + [31112] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2964), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym___attribute, anon_sym_EQ, ACTIONS(2471), 21, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88898,52 +87813,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31456] = 11, + [31184] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2968), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(2469), 7, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym___attribute, anon_sym_EQ, ACTIONS(2471), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88955,31 +87870,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [31252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2930), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2923), 3, + anon_sym___attribute__, + anon_sym___attribute, + sym_identifier, + ACTIONS(2933), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(2926), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(2928), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [31310] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2942), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2935), 3, + anon_sym___attribute__, + anon_sym___attribute, sym_identifier, - [31524] = 10, + ACTIONS(2945), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(2938), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(2940), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [31368] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2950), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(2469), 9, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88987,19 +88004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, ACTIONS(2471), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89011,62 +88030,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31590] = 20, + [31434] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2954), 1, - anon_sym_AMP_AMP, - ACTIONS(2956), 1, - anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(2907), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(2909), 1, anon_sym_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2913), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2469), 3, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2901), 16, + ACTIONS(2471), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89077,126 +88092,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31676] = 20, + [31512] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2952), 1, - anon_sym_PIPE_PIPE, ACTIONS(2954), 1, - anon_sym_AMP_AMP, + anon_sym_LBRACE, ACTIONS(2956), 1, - anon_sym_PIPE, - ACTIONS(2958), 1, - anon_sym_CARET, - ACTIONS(2960), 1, - anon_sym_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2964), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2966), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2968), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2974), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2950), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2972), 16, + anon_sym_COLON, + STATE(746), 1, + sym_attribute_specifier, + STATE(874), 1, + sym_enumerator_list, + ACTIONS(2951), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2949), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2947), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [31762] = 19, + [31574] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2954), 1, - anon_sym_AMP_AMP, - ACTIONS(2956), 1, + ACTIONS(2905), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(2907), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(2909), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(2958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2960), 1, + anon_sym_AMP_AMP, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2930), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(2921), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2928), 17, + ACTIONS(2919), 17, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89208,55 +88211,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31846] = 17, + [31658] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2907), 1, + ACTIONS(2905), 1, anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(2907), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(2909), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(2960), 1, + anon_sym_AMP_AMP, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(2469), 2, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2877), 2, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2471), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -89272,60 +88275,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31926] = 18, + [31740] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_EQ, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2964), 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(1770), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1764), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [31800] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, ACTIONS(2905), 1, - anon_sym_AMP_AMP, - ACTIONS(2907), 1, anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(2907), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(2909), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(2958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2960), 1, + anon_sym_AMP_AMP, + ACTIONS(2970), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2968), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 18, + ACTIONS(2966), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89336,56 +88394,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32008] = 20, + [31886] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, ACTIONS(2905), 1, - anon_sym_AMP_AMP, - ACTIONS(2907), 1, anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(2907), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(2909), 1, anon_sym_AMP, - ACTIONS(2915), 1, + ACTIONS(2958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2960), 1, + anon_sym_AMP_AMP, + ACTIONS(2970), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2972), 16, + ACTIONS(2889), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -89402,53 +88460,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32094] = 16, + [31972] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2909), 1, - anon_sym_CARET, - ACTIONS(2911), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2903), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2469), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2899), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - anon_sym_PIPE, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2879), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2471), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -89463,116 +88514,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [32172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2978), 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(1778), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1772), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [32232] = 20, + anon_sym_PIPE_EQ, + [32036] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_AMP_AMP, - ACTIONS(2907), 1, - anon_sym_PIPE, ACTIONS(2909), 1, - anon_sym_CARET, - ACTIONS(2911), 1, anon_sym_AMP, - ACTIONS(2915), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(2911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(2913), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(2915), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(2917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(2903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2944), 16, + ACTIONS(2469), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2471), 19, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89583,49 +88576,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32318] = 16, + [32112] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2958), 1, + ACTIONS(2873), 1, + anon_sym_AMP_AMP, + ACTIONS(2875), 1, + anon_sym_PIPE, + ACTIONS(2877), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(2879), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(2893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2895), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(2885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, + ACTIONS(2968), 2, aux_sym_preproc_elif_token1, - anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2950), 3, + ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2966), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [32198] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2871), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2469), 11, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2471), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -89633,6 +88681,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89645,12 +88697,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32396] = 5, + [32262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(2905), 1, + anon_sym_PIPE, + ACTIONS(2907), 1, + anon_sym_CARET, + ACTIONS(2909), 1, + anon_sym_AMP, + ACTIONS(2958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2960), 1, + anon_sym_AMP_AMP, + ACTIONS(2970), 1, + anon_sym_QMARK, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2899), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2911), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2913), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2915), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2903), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2897), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2549), 1, anon_sym_EQ, - ACTIONS(1794), 10, + ACTIONS(2551), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89661,7 +88779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 13, + ACTIONS(1770), 13, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89674,10 +88793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - ACTIONS(1772), 19, + ACTIONS(1764), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89685,36 +88806,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [32451] = 7, + sym_identifier, + [32403] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2954), 1, anon_sym_LBRACE, - STATE(776), 1, + STATE(772), 1, sym_attribute_specifier, - STATE(876), 1, + STATE(883), 1, sym_enumerator_list, - ACTIONS(2984), 2, + ACTIONS(2976), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2982), 6, + ACTIONS(2974), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2980), 32, + ACTIONS(2972), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -89747,12 +88865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [32510] = 5, + [32462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(1782), 1, anon_sym_EQ, - ACTIONS(2534), 10, + ACTIONS(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89763,8 +88881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 13, - aux_sym_preproc_elif_token1, + ACTIONS(1770), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89777,12 +88894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 19, + anon_sym___attribute, + ACTIONS(1764), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89790,20 +88905,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [32517] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN2, + ACTIONS(1817), 1, + anon_sym_STAR, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, sym_identifier, - [32565] = 3, + ACTIONS(2831), 1, + anon_sym_LBRACK, + ACTIONS(2837), 1, + anon_sym_RPAREN, + STATE(711), 1, + sym_alignas_qualifier, + STATE(989), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1291), 1, + sym__declarator, + STATE(1423), 1, + sym__abstract_declarator, + STATE(1452), 1, + sym_parameter_list, + STATE(1900), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2829), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(840), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(946), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2827), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [32603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 2, + ACTIONS(2294), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2274), 40, + ACTIONS(2292), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89844,55 +89027,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32615] = 21, + [32653] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1815), 1, anon_sym_LPAREN2, - ACTIONS(1825), 1, + ACTIONS(1817), 1, anon_sym_STAR, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2813), 1, - anon_sym_LBRACK, - ACTIONS(2853), 1, + ACTIONS(2821), 1, anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1302), 1, + STATE(1293), 1, sym__declarator, - STATE(1418), 1, + STATE(1398), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(848), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(957), 2, + STATE(947), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -89909,62 +89092,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [32701] = 21, + [32739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1825), 1, - anon_sym_STAR, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2258), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2256), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2803), 1, - anon_sym_RPAREN, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1299), 1, - sym__declarator, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1967), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, + [32789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2803), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2801), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(953), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2793), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -89974,24 +89224,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [32787] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(2807), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2258), 40, + anon_sym_RBRACE, + ACTIONS(2805), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90021,20 +89277,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32837] = 5, + [32936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2811), 2, anon_sym_LBRACK_LBRACK, - STATE(503), 1, - sym_string_literal, - ACTIONS(2987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2577), 34, + anon_sym_RBRACE, + ACTIONS(2809), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90069,15 +89323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32890] = 3, + [32985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(2815), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1376), 40, + anon_sym_RBRACE, + ACTIONS(2813), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90115,12 +89369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32939] = 3, + [33034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(2853), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 40, + ACTIONS(2851), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90161,22 +89415,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32988] = 5, + [33083] = 5, ACTIONS(3), 1, sym_comment, - STATE(777), 1, + STATE(747), 1, sym_attribute_specifier, - ACTIONS(2993), 2, + ACTIONS(2983), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2991), 6, + ACTIONS(2981), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2989), 32, + ACTIONS(2979), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -90209,12 +89463,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [33041] = 3, + [33136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2859), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2857), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2863), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2861), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2799), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 40, + ACTIONS(2797), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90255,12 +89601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33090] = 3, + [33283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, + ACTIONS(2803), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2871), 40, + ACTIONS(2801), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90301,12 +89647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33139] = 3, + [33332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2867), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 40, + ACTIONS(2865), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90347,12 +89693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33188] = 3, + [33381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 1, + ACTIONS(2835), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1320), 40, + ACTIONS(2833), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90393,15 +89739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33237] = 3, + [33430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 2, + ACTIONS(2849), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2863), 39, + ACTIONS(2847), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90439,12 +89785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33286] = 3, + [33479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, + ACTIONS(2795), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1312), 40, + ACTIONS(2793), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90485,15 +89831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33335] = 3, + [33528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 2, + ACTIONS(2807), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2823), 39, + ACTIONS(2805), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90531,12 +89877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33384] = 3, + [33577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(2811), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2849), 40, + ACTIONS(2809), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90577,15 +89923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33433] = 3, + [33626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 2, + ACTIONS(2815), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2845), 39, + ACTIONS(2813), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90623,13 +89969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33482] = 3, + [33675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1358), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1312), 39, + ACTIONS(1356), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90669,13 +90015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33531] = 3, + [33724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 2, + ACTIONS(1362), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2827), 39, + ACTIONS(1360), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90715,13 +90061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33580] = 3, + [33773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 2, + ACTIONS(2859), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1356), 39, + ACTIONS(2857), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90761,13 +90107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33629] = 3, + [33822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1288), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1368), 39, + ACTIONS(1286), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90807,13 +90153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33678] = 3, + [33871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(1292), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2849), 39, + ACTIONS(1290), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90853,68 +90199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33727] = 5, + [33920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(1320), 2, anon_sym_LBRACK_LBRACK, - STATE(506), 1, - sym_string_literal, - ACTIONS(2987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2577), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33780] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2579), 1, - anon_sym_LBRACK_LBRACK, - STATE(497), 1, - sym_string_literal, - ACTIONS(2987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2577), 34, + anon_sym_RBRACE, + ACTIONS(1318), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90949,12 +90245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33833] = 3, + [33969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(1358), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 40, + ACTIONS(1356), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90995,15 +90291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33882] = 3, + [34018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(1362), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1272), 39, + ACTIONS(1360), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91041,12 +90337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33931] = 3, + [34067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(1272), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2819), 40, + ACTIONS(1270), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91087,12 +90383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33980] = 3, + [34116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(1288), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2823), 40, + ACTIONS(1286), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91133,15 +90429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34029] = 3, + [34165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 2, + ACTIONS(1292), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1320), 39, + ACTIONS(1290), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91179,15 +90475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34078] = 3, + [34214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 2, + ACTIONS(1320), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2819), 39, + ACTIONS(1318), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91225,61 +90521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34127] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(769), 1, - sym_attribute_specifier, - ACTIONS(3000), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2998), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2996), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [34180] = 3, + [34263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, + ACTIONS(2853), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2867), 39, + ACTIONS(2851), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91319,20 +90567,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34229] = 5, + [34312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2571), 1, anon_sym_LBRACK_LBRACK, - STATE(499), 1, + STATE(493), 1, sym_string_literal, - ACTIONS(2987), 5, + ACTIONS(2986), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2577), 34, + ACTIONS(2569), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91367,22 +90615,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34282] = 5, + [34365] = 5, ACTIONS(3), 1, sym_comment, - STATE(758), 1, + STATE(753), 1, sym_attribute_specifier, - ACTIONS(3007), 2, + ACTIONS(2992), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3005), 6, + ACTIONS(2990), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3003), 32, + ACTIONS(2988), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -91415,153 +90663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [34335] = 3, + [34418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2827), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2833), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2831), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2873), 2, + ACTIONS(2867), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2871), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2837), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2835), 40, + ACTIONS(2865), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91599,15 +90709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34531] = 3, + [34467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2835), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2839), 40, + anon_sym_RBRACE, + ACTIONS(2833), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91645,18 +90755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34580] = 3, + [34516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(2571), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(488), 1, + sym_string_literal, + ACTIONS(2986), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2569), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91691,15 +90803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34629] = 3, + [34569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(2849), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1356), 40, + anon_sym_RBRACE, + ACTIONS(2847), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91737,13 +90849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34678] = 3, + [34618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 2, + ACTIONS(2863), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2831), 39, + ACTIONS(2861), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91783,13 +90895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34727] = 3, + [34667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 2, + ACTIONS(2799), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2815), 39, + ACTIONS(2797), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91829,18 +90941,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34776] = 3, + [34716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 1, + ACTIONS(2571), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1368), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(484), 1, + sym_string_literal, + ACTIONS(2986), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2569), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91875,18 +90989,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34825] = 3, + [34769] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 2, + ACTIONS(2571), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2835), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(491), 1, + sym_string_literal, + ACTIONS(2986), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2569), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91921,13 +91037,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34874] = 3, + [34822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 2, + STATE(768), 1, + sym_attribute_specifier, + ACTIONS(2999), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2997), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2995), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [34875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1272), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2839), 39, + ACTIONS(1270), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91967,27 +91131,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34923] = 3, + [34924] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + STATE(668), 1, + sym_argument_list, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2485), 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(2487), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1376), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3006), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92013,10 +91225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34972] = 18, + [35030] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -92026,27 +91238,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, STATE(1335), 1, sym__type_declarator, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(908), 2, + STATE(903), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1016), 2, + STATE(1005), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -92055,7 +91267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -92072,64 +91284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [35049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3020), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35096] = 9, + [35107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2469), 13, @@ -92166,23 +91334,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35155] = 9, + [35166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2453), 13, + ACTIONS(2477), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92196,7 +91364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2455), 19, + ACTIONS(2479), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92216,28 +91384,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35214] = 9, + [35225] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2712), 1, anon_sym_LPAREN2, - ACTIONS(3028), 1, + ACTIONS(3020), 1, anon_sym_COMMA, - ACTIONS(3031), 1, + ACTIONS(3023), 1, anon_sym_RPAREN, - STATE(768), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1666), 1, + STATE(1594), 1, aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1786), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1788), 4, + ACTIONS(1780), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1770), 28, + ACTIONS(1762), 28, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92266,56 +91434,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [35273] = 21, + [35284] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(2946), 1, + ACTIONS(2968), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, + ACTIONS(3032), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3044), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3048), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2944), 12, + ACTIONS(2966), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -92328,23 +91496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35356] = 10, + [35367] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92355,78 +91523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2471), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [35417] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_EQ, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE, - ACTIONS(3044), 1, - anon_sym_CARET, - ACTIONS(3046), 1, - anon_sym_AMP, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3048), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3052), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3054), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 14, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2471), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92439,53 +91547,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35496] = 18, + [35428] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, ACTIONS(2469), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3042), 1, + ACTIONS(3032), 1, + anon_sym_AMP_AMP, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3044), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 15, + ACTIONS(2471), 14, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92498,45 +91607,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35573] = 17, + [35507] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3044), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2469), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92556,44 +91665,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35648] = 16, + [35582] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2469), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92613,38 +91722,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35721] = 15, + [35655] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92669,35 +91778,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35792] = 14, + [35726] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92724,29 +91833,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35861] = 12, + [35795] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92777,26 +91886,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35926] = 11, + [35860] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92829,115 +91938,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35989] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1345), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1013), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [36066] = 21, + [35923] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(2913), 1, + ACTIONS(2891), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, + ACTIONS(3032), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3044), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3048), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2901), 12, + ACTIONS(2889), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -92950,56 +92000,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36149] = 21, + [36006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(2974), 1, + ACTIONS(2899), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, + ACTIONS(3032), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3044), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3048), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2972), 12, + ACTIONS(2897), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -93012,54 +92062,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36232] = 20, + [36089] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(2930), 1, + ACTIONS(2921), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, + ACTIONS(3032), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3044), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3026), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3042), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3044), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2928), 13, + ACTIONS(2919), 13, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_QMARK, @@ -93073,72 +92123,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36313] = 8, + [36170] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - STATE(676), 1, - sym_argument_list, - ACTIONS(2489), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3014), 1, 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(2491), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [36370] = 9, + ACTIONS(3018), 1, + sym_primitive_type, + STATE(711), 1, + sym_alignas_qualifier, + STATE(989), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1341), 1, + sym__type_declarator, + STATE(1920), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2829), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(939), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1008), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2827), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3016), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1415), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [36247] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, + anon_sym_LPAREN2, + ACTIONS(3014), 1, + anon_sym_STAR, + ACTIONS(3018), 1, + sym_primitive_type, + STATE(711), 1, + sym_alignas_qualifier, + STATE(989), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1341), 1, + sym__type_declarator, + STATE(1920), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2829), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(908), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1008), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2827), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3016), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1415), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [36324] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2485), 13, + ACTIONS(2441), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93152,7 +92268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2487), 19, + ACTIONS(2443), 21, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93172,23 +92288,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36429] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [36381] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2473), 13, + ACTIONS(2451), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93202,7 +92320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2475), 19, + ACTIONS(2453), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93222,23 +92340,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36488] = 9, + [36440] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2477), 13, + ACTIONS(2481), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93252,7 +92370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2479), 19, + ACTIONS(2483), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93272,10 +92390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36547] = 18, + [36499] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -93285,27 +92403,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1357), 1, + STATE(1326), 1, sym__type_declarator, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1017), 2, + STATE(1009), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -93314,7 +92432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -93331,56 +92449,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [36624] = 18, + [36576] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(2469), 1, + anon_sym_EQ, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3038), 1, + anon_sym_AMP, + STATE(668), 1, + sym_argument_list, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3026), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3040), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3042), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3044), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3028), 3, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1345), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(916), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1013), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3016), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2471), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [36653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2459), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [36699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_EQ, + ACTIONS(2964), 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(1770), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1764), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [36749] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_LPAREN2, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3050), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1780), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, + ACTIONS(1762), 28, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93390,10 +92640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [36701] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [36803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 19, + ACTIONS(1206), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93413,7 +92666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1156), 19, + ACTIONS(1208), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93433,10 +92686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36747] = 3, + [36849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 19, + ACTIONS(1178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93456,7 +92709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1176), 19, + ACTIONS(1180), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93476,10 +92729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36793] = 3, + [36895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 19, + ACTIONS(1202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93499,7 +92752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1200), 19, + ACTIONS(1204), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93508,21 +92761,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36839] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [36941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2473), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2475), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [36987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2465), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2467), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [37033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 19, + ACTIONS(1234), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93542,7 +92881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1204), 19, + ACTIONS(1236), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93562,7 +92901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36885] = 3, + [37079] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1202), 19, @@ -93605,58 +92944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36931] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 1, - anon_sym_LPAREN2, - ACTIONS(3065), 1, - anon_sym_LBRACK, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1786), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3058), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1770), 27, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [36987] = 3, + [37125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 19, + ACTIONS(1234), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93676,7 +92967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1216), 19, + ACTIONS(1236), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93696,53 +92987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [37033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2481), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2483), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37079] = 3, + [37171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 19, + ACTIONS(1178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93762,7 +93010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1156), 19, + ACTIONS(1180), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93782,53 +93030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [37125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2493), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2495), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37171] = 3, + [37217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 19, + ACTIONS(1238), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93848,7 +93053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1172), 19, + ACTIONS(1240), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93868,10 +93073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [37217] = 3, + [37263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 19, + ACTIONS(1238), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -93891,7 +93096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1172), 19, + ACTIONS(1240), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93911,7 +93116,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [37263] = 3, + [37309] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, + anon_sym_LPAREN2, + ACTIONS(3060), 1, + anon_sym_LBRACK, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1778), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(3053), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1762), 27, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [37365] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1174), 19, @@ -93954,129 +93207,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [37309] = 3, + [37411] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2467), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1815), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - ACTIONS(2978), 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(1778), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2823), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1772), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(2831), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37405] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LPAREN2, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1786), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3068), 2, + STATE(711), 1, + sym_alignas_qualifier, + STATE(1355), 1, + sym__declarator, + STATE(1424), 1, + sym__abstract_declarator, + STATE(1452), 1, + sym_parameter_list, + STATE(1984), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3063), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1770), 28, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3065), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(665), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94086,50 +93264,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [37459] = 18, + [37486] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1815), 1, anon_sym_LPAREN2, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2805), 1, + ACTIONS(2823), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1370), 1, + STATE(1367), 1, sym__declarator, - STATE(1429), 1, + STATE(1398), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - STATE(1992), 1, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3071), 2, + ACTIONS(2821), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3073), 2, + ACTIONS(2825), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -94146,14 +93321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [37534] = 6, + [37561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1782), 1, anon_sym_EQ, - ACTIONS(3075), 1, + ACTIONS(3067), 1, anon_sym_SEMI, - ACTIONS(1794), 10, + ACTIONS(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94164,7 +93339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(1770), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -94177,7 +93352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 13, + ACTIONS(1764), 13, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94191,152 +93366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [37585] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(2805), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1369), 1, - sym__declarator, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1992), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2803), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2807), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [37660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1170), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1176), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1174), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37748] = 3, + [37612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 2, + ACTIONS(1236), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1174), 34, + ACTIONS(1234), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94371,13 +93407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37792] = 3, + [37656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 2, + ACTIONS(1240), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3077), 34, + ACTIONS(1238), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94412,13 +93448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37836] = 3, + [37700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 2, + ACTIONS(1240), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1198), 34, + ACTIONS(1238), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94453,7 +93489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37880] = 3, + [37744] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1204), 2, @@ -94494,7 +93530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37924] = 3, + [37788] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1204), 2, @@ -94535,54 +93571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1216), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1214), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38012] = 3, + [37832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 2, + ACTIONS(1180), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3081), 34, + ACTIONS(1178), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94617,13 +93612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38056] = 3, + [37876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 2, + ACTIONS(1180), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2886), 34, + ACTIONS(1178), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94658,13 +93653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38100] = 3, + [37920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 2, + ACTIONS(1236), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1154), 34, + ACTIONS(1234), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94699,13 +93694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38144] = 3, + [37964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 2, + ACTIONS(1208), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1170), 34, + ACTIONS(1206), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94740,13 +93735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38188] = 3, + [38008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 2, + ACTIONS(1176), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1154), 34, + ACTIONS(1174), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94781,29 +93776,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38232] = 7, + [38052] = 7, ACTIONS(3), 1, sym_comment, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3094), 2, + ACTIONS(3076), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3091), 3, + ACTIONS(3073), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3089), 6, + ACTIONS(3071), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3087), 21, + ACTIONS(3069), 21, anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, @@ -94825,52 +93820,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [38283] = 18, + [38103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3079), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38146] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(1942), 1, anon_sym_STAR, - ACTIONS(2809), 1, + ACTIONS(2827), 1, sym_ms_restrict_modifier, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1430), 1, + STATE(1398), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - ACTIONS(3099), 2, + ACTIONS(3085), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3101), 2, + ACTIONS(3087), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3103), 2, + ACTIONS(3089), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(950), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1091), 2, + STATE(1086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2803), 3, + ACTIONS(2821), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3083), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -94880,52 +93915,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38356] = 18, + [38219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3091), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2928), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38262] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(1942), 1, anon_sym_STAR, - ACTIONS(2809), 1, + ACTIONS(2827), 1, sym_ms_restrict_modifier, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1418), 1, + STATE(1423), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - ACTIONS(3099), 2, + ACTIONS(3085), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3101), 2, + ACTIONS(3087), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3103), 2, + ACTIONS(3089), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(951), 2, + STATE(941), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1085), 2, + STATE(1098), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2853), 3, + ACTIONS(2837), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3083), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -94935,48 +94010,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38429] = 17, + [38335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1825), 1, - anon_sym_STAR, - ACTIONS(1827), 1, + ACTIONS(3095), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3093), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38378] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(2813), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3099), 1, + anon_sym_LPAREN2, + ACTIONS(3101), 1, + anon_sym_STAR, + STATE(711), 1, sym_alignas_qualifier, - STATE(1301), 1, - sym__declarator, - STATE(1429), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1967), 1, + STATE(989), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1319), 1, + sym__field_declarator, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + ACTIONS(2829), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(939), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1106), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(2827), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1382), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(49), 10, anon_sym___extension__, anon_sym_const, @@ -94988,42 +94102,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38499] = 16, + [38446] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1815), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(1817), 1, anon_sym_STAR, - STATE(720), 1, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2821), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1299), 1, + STATE(1293), 1, sym__declarator, - STATE(1967), 1, + STATE(1398), 1, + sym__abstract_declarator, + STATE(1452), 1, + sym_parameter_list, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(955), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1117), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95040,42 +94155,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38567] = 16, + [38516] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1815), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(1817), 1, anon_sym_STAR, - STATE(720), 1, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2831), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_RPAREN, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1301), 1, + STATE(1294), 1, sym__declarator, - STATE(1967), 1, + STATE(1424), 1, + sym__abstract_declarator, + STATE(1452), 1, + sym_parameter_list, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1114), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95092,42 +94208,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38635] = 16, + [38586] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1302), 1, + STATE(1294), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(966), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1113), 2, + STATE(1111), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95144,43 +94260,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38703] = 17, + [38654] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1825), 1, - anon_sym_STAR, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2803), 1, - anon_sym_RPAREN, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3105), 1, + anon_sym_STAR, + STATE(711), 1, sym_alignas_qualifier, - STATE(1299), 1, + STATE(989), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1291), 1, sym__declarator, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + ACTIONS(2829), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(950), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1107), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, + ACTIONS(2827), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95197,42 +94312,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38773] = 16, + [38722] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1370), 1, + STATE(1293), 1, sym__declarator, - STATE(1992), 1, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1115), 2, + STATE(1109), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95249,42 +94364,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38841] = 16, + [38790] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1330), 1, + STATE(1322), 1, sym__field_declarator, - STATE(1953), 1, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(961), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1118), 2, + STATE(1110), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1395), 5, + STATE(1382), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -95301,42 +94416,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38909] = 16, + [38858] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1369), 1, + STATE(1293), 1, sym__declarator, - STATE(1992), 1, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(948), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1112), 2, + STATE(1109), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95353,42 +94468,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38977] = 16, + [38926] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1327), 1, + STATE(1318), 1, sym__field_declarator, - STATE(1953), 1, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(945), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, + STATE(1108), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1395), 5, + STATE(1382), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -95405,47 +94520,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39045] = 16, + [38994] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3107), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1327), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1367), 1, + sym__declarator, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(965), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, + STATE(1104), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(49), 10, anon_sym___extension__, anon_sym_const, @@ -95457,42 +94572,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39113] = 16, + [39062] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3107), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1369), 1, + STATE(1367), 1, sym__declarator, - STATE(1992), 1, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(958), 2, + STATE(956), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1112), 2, + STATE(1104), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95509,42 +94624,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39181] = 16, + [39130] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3107), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1368), 1, + STATE(1355), 1, sym__declarator, - STATE(1992), 1, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(960), 2, + STATE(939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1111), 2, + STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95561,47 +94676,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39249] = 16, + [39198] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3107), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1326), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1366), 1, + sym__declarator, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, + STATE(1102), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(49), 10, anon_sym___extension__, anon_sym_const, @@ -95613,47 +94728,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39317] = 16, + [39266] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(998), 1, + STATE(989), 1, sym_ms_unaligned_ptr_modifier, - STATE(1299), 1, - sym__declarator, - STATE(1967), 1, + STATE(1319), 1, + sym__field_declarator, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(2829), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(951), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1117), 2, + STATE(1106), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(2827), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1382), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(49), 10, anon_sym___extension__, anon_sym_const, @@ -95665,36 +94780,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39385] = 14, + [39334] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2469), 1, + anon_sym___attribute, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2471), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39407] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, + anon_sym_SLASH, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, ACTIONS(3127), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2469), 3, @@ -95714,191 +94883,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39448] = 21, + [39470] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3131), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3141), 1, - anon_sym_AMP_AMP, - ACTIONS(3143), 1, - anon_sym_PIPE, - ACTIONS(3145), 1, - anon_sym_CARET, - ACTIONS(3147), 1, - anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(2469), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + anon_sym___attribute, + ACTIONS(2471), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3129), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [39525] = 20, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39527] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2930), 1, + ACTIONS(2891), 1, anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2928), 7, + ACTIONS(2889), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [39600] = 21, + [39604] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2946), 1, + ACTIONS(2968), 1, aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, - anon_sym_SLASH, ACTIONS(3139), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3141), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3143), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(3145), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(3147), 1, + anon_sym_CARET, + ACTIONS(3149), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3159), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2944), 6, + ACTIONS(2966), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [39677] = 10, + [39681] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3135), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(2469), 7, @@ -95926,49 +95086,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [39732] = 19, + [39736] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, ACTIONS(2469), 1, aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - ACTIONS(3141), 1, - anon_sym_AMP_AMP, ACTIONS(3143), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(3145), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(3147), 1, + anon_sym_CARET, + ACTIONS(3149), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2471), 8, @@ -95980,47 +95140,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK, sym_identifier, - [39805] = 18, + [39809] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, ACTIONS(2469), 1, aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - ACTIONS(3143), 1, - anon_sym_PIPE, ACTIONS(3145), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(3147), 1, + anon_sym_CARET, + ACTIONS(3149), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2471), 9, @@ -96033,46 +95193,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [39876] = 17, + [39880] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - ACTIONS(3145), 1, - anon_sym_CARET, ACTIONS(3147), 1, + anon_sym_CARET, + ACTIONS(3149), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(2469), 2, aux_sym_preproc_elif_token1, anon_sym_PIPE, - ACTIONS(3133), 2, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2471), 9, @@ -96085,44 +95245,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [39945] = 16, + [39949] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - ACTIONS(3147), 1, + ACTIONS(3149), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(2469), 2, aux_sym_preproc_elif_token1, anon_sym_PIPE, - ACTIONS(3133), 2, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2471), 10, @@ -96136,39 +95296,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [40012] = 15, + [40016] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2469), 3, @@ -96186,36 +95346,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [40077] = 14, + [40081] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2469), 3, @@ -96235,30 +95395,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [40140] = 12, + [40144] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2469), 5, @@ -96282,27 +95442,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [40199] = 11, + [40203] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(2469), 5, @@ -96328,426 +95488,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [40256] = 21, + [40260] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2913), 1, + ACTIONS(2891), 1, aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, - anon_sym_SLASH, ACTIONS(3139), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3141), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3143), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(3145), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(3147), 1, + anon_sym_CARET, + ACTIONS(3149), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3159), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2901), 6, + ACTIONS(2889), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [40333] = 21, + [40337] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2974), 1, + ACTIONS(2899), 1, aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, - anon_sym_SLASH, ACTIONS(3139), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3141), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3143), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(3145), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(3147), 1, + anon_sym_CARET, + ACTIONS(3149), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3159), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2972), 6, + ACTIONS(2897), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [40410] = 21, + [40414] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2974), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2469), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(2471), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 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___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [40469] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym___attribute, + ACTIONS(3113), 1, + anon_sym_SLASH, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2972), 6, + ACTIONS(2471), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [40487] = 10, + anon_sym_QMARK, + [40540] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2469), 7, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2469), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym___attribute, - ACTIONS(2471), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3109), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2471), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [40542] = 19, + [40609] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, + ACTIONS(2899), 1, anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 8, + ACTIONS(2897), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [40615] = 18, + [40686] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2469), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 9, + ACTIONS(2471), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [40686] = 17, + [40753] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2921), 1, + anon_sym___attribute, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3165), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 9, + ACTIONS(2919), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [40755] = 20, + [40828] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2930), 1, + ACTIONS(2921), 1, aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, - anon_sym_SLASH, ACTIONS(3139), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3141), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3143), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(3145), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(3147), 1, + anon_sym_CARET, + ACTIONS(3149), 1, anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2928), 7, + ACTIONS(2919), 7, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96755,240 +95967,201 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_QMARK, sym_identifier, - [40830] = 16, + [40903] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, - anon_sym_SLASH, - ACTIONS(3167), 1, - anon_sym_AMP, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2469), 2, - anon_sym_PIPE, + ACTIONS(2968), 1, anon_sym___attribute, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(3113), 1, + anon_sym_SLASH, + ACTIONS(3115), 1, anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [40897] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, ACTIONS(3121), 1, - anon_sym_SLASH, - STATE(676), 1, + anon_sym_AMP, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2469), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(2471), 10, + ACTIONS(2966), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [40962] = 21, + [40980] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2946), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3139), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3141), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3143), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3145), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3147), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3149), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3159), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3163), 1, + aux_sym_preproc_elif_token1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3137), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3151), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3153), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3155), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2944), 6, + ACTIONS(3161), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [41039] = 12, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [41057] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, ACTIONS(3127), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 5, + ACTIONS(2469), 3, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym___attribute, - ACTIONS(2471), 14, + ACTIONS(2471), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [41098] = 11, + [41122] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(3129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2469), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym___attribute, - ACTIONS(2471), 16, + ACTIONS(2471), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -96998,102 +96171,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [41155] = 21, + [41181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2913), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3165), 13, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + ACTIONS(3167), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2901), 6, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [41232] = 15, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [41221] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + sym_primitive_type, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(1938), 1, sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, + ACTIONS(3169), 1, + anon_sym_enum, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1026), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1077), 1, sym_type_specifier, - STATE(1280), 1, - sym__type_definition_type, + STATE(1919), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1007), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(1718), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97110,39 +96262,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [41296] = 15, + [41285] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + sym_primitive_type, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(1938), 1, sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1026), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1077), 1, sym_type_specifier, - STATE(1271), 1, - sym__type_definition_type, + STATE(1813), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1006), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(1718), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97159,17 +96311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [41360] = 3, + [41349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 6, + ACTIONS(3173), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3179), 26, + ACTIONS(3171), 26, anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, @@ -97196,66 +96348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41400] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, - sym_type_specifier, - STATE(1845), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1015), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41464] = 3, + [41389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 6, + ACTIONS(3177), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3183), 26, + ACTIONS(3175), 26, anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, @@ -97282,10 +96385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41504] = 3, + [41429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 13, + ACTIONS(3179), 13, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -97299,7 +96402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(3189), 19, + ACTIONS(3181), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -97319,76 +96422,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [41544] = 3, + [41469] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 13, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1720), 1, + anon_sym_enum, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3193), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [41584] = 15, + ACTIONS(3187), 1, + sym_primitive_type, + STATE(711), 1, + sym_alignas_qualifier, + STATE(1114), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1115), 1, + sym_type_specifier, + STATE(1270), 1, + sym__type_definition_type, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1010), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3185), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(770), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [41533] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3187), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1115), 1, sym_type_specifier, - STATE(1277), 1, + STATE(1265), 1, sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97405,39 +96520,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [41648] = 15, + [41597] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(3195), 1, + ACTIONS(1720), 1, anon_sym_enum, - STATE(720), 1, + ACTIONS(3183), 1, + sym_identifier, + ACTIONS(3187), 1, + sym_primitive_type, + STATE(711), 1, sym_alignas_qualifier, - STATE(1063), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, + STATE(1115), 1, sym_type_specifier, - STATE(1850), 1, - sym_type_descriptor, + STATE(1273), 1, + sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1014), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97454,7 +96569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [41712] = 15, + [41661] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -97463,30 +96578,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1063), 1, + STATE(1026), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, + STATE(1077), 1, sym_type_specifier, - STATE(1811), 1, + STATE(1782), 1, sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1015), 2, + STATE(1006), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1718), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97503,44 +96618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [41776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 13, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(3199), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [41816] = 15, + [41725] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -97549,30 +96627,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(3195), 1, + ACTIONS(1720), 1, anon_sym_enum, - STATE(720), 1, + ACTIONS(1938), 1, + sym_identifier, + STATE(711), 1, sym_alignas_qualifier, - STATE(1063), 1, + STATE(1026), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, + STATE(1077), 1, sym_type_specifier, - STATE(2020), 1, + STATE(1812), 1, sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1014), 2, + STATE(1006), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1718), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97589,39 +96667,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [41880] = 15, + [41789] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3187), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1115), 1, sym_type_specifier, - STATE(1279), 1, + STATE(1267), 1, sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97638,39 +96716,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [41944] = 15, + [41853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3189), 13, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + ACTIONS(3191), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [41893] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(1946), 1, + ACTIONS(3183), 1, sym_identifier, - STATE(720), 1, + ACTIONS(3187), 1, + sym_primitive_type, + STATE(711), 1, sym_alignas_qualifier, - STATE(1063), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, + STATE(1115), 1, sym_type_specifier, - STATE(1828), 1, - sym_type_descriptor, + STATE(1266), 1, + sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1015), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97687,39 +96802,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42008] = 15, + [41957] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + sym_primitive_type, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(1938), 1, sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, + ACTIONS(3169), 1, + anon_sym_enum, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1026), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1077), 1, sym_type_specifier, - STATE(1274), 1, - sym__type_definition_type, + STATE(1944), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1007), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(1718), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97736,39 +96851,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42072] = 15, + [42021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3193), 13, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + ACTIONS(3195), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [42061] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3187), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1115), 1, sym_type_specifier, - STATE(1278), 1, + STATE(1271), 1, sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97785,39 +96937,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42136] = 15, + [42125] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3187), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1115), 1, sym_type_specifier, - STATE(1282), 1, + STATE(1274), 1, sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97834,39 +96986,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42200] = 15, + [42189] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3187), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, + STATE(1115), 1, sym_type_specifier, - STATE(1276), 1, + STATE(1272), 1, sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97883,47 +97035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 13, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(3203), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [42304] = 14, + [42253] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -97933,16 +97048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1357), 1, + STATE(1341), 1, sym__type_declarator, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3016), 4, @@ -97950,7 +97065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -97967,7 +97082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42365] = 14, + [42314] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -97976,28 +97091,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(3195), 1, + ACTIONS(1720), 1, anon_sym_enum, - STATE(720), 1, + ACTIONS(1938), 1, + sym_identifier, + STATE(711), 1, sym_alignas_qualifier, - STATE(1063), 1, + STATE(1026), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1101), 1, + STATE(1093), 1, sym_type_specifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1718), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98014,7 +97129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42426] = 14, + [42375] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -98023,28 +97138,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(1946), 1, + ACTIONS(1938), 1, sym_identifier, - STATE(720), 1, + ACTIONS(3169), 1, + anon_sym_enum, + STATE(711), 1, sym_alignas_qualifier, - STATE(1063), 1, + STATE(1026), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1101), 1, + STATE(1093), 1, sym_type_specifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1718), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98061,10 +97176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42487] = 14, + [42436] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -98074,16 +97189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1345), 1, + STATE(1326), 1, sym__type_declarator, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3016), 4, @@ -98091,7 +97206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -98108,10 +97223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42548] = 14, + [42497] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -98121,16 +97236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1337), 1, + STATE(1323), 1, sym__type_declarator, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3016), 4, @@ -98138,7 +97253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -98155,37 +97270,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42609] = 14, + [42558] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1720), 1, anon_sym_enum, - ACTIONS(3173), 1, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3187), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1122), 1, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1126), 1, + STATE(1116), 1, sym_type_specifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, + ACTIONS(3185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(770), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98202,80 +97317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42670] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3121), 1, - anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3207), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [42744] = 8, + [42619] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2954), 1, anon_sym_LBRACE, - ACTIONS(3209), 1, - anon_sym_COLON, - STATE(774), 1, + STATE(772), 1, sym_attribute_specifier, - STATE(1044), 1, + STATE(1068), 1, sym_enumerator_list, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2919), 5, + ACTIONS(2974), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2917), 19, + anon_sym_COLON, + ACTIONS(2972), 19, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -98295,79 +97356,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [42792] = 21, + [42665] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3213), 1, - anon_sym___attribute, - STATE(676), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + ACTIONS(3199), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [42739] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, + anon_sym_SLASH, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + ACTIONS(3203), 1, + anon_sym___attribute, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3211), 3, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3127), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [42866] = 7, + [42813] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2954), 1, anon_sym_LBRACE, - STATE(776), 1, + ACTIONS(3205), 1, + anon_sym_COLON, + STATE(746), 1, sym_attribute_specifier, - STATE(1062), 1, + STATE(1021), 1, sym_enumerator_list, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2982), 6, + ACTIONS(2949), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2980), 19, + ACTIONS(2947), 19, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -98387,2632 +97502,2628 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [42912] = 22, + [42861] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3215), 1, + ACTIONS(3207), 1, anon_sym_COMMA, - ACTIONS(3217), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3209), 1, + anon_sym_RBRACE, + STATE(668), 1, sym_argument_list, - STATE(1587), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + STATE(1660), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42987] = 22, + [42936] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3219), 1, + ACTIONS(3211), 1, anon_sym_COMMA, - ACTIONS(3221), 1, + ACTIONS(3213), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - STATE(1572), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + STATE(1568), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43062] = 22, + [43011] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3223), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - ACTIONS(3225), 1, - anon_sym_RBRACE, - STATE(676), 1, + ACTIONS(3217), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - STATE(1670), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + STATE(1654), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43137] = 22, + [43086] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3219), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - STATE(1617), 1, + STATE(1572), 1, aux_sym_argument_list_repeat1, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43212] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3121), 1, - anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3229), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43282] = 22, + [43161] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_RBRACK, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3221), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43356] = 21, + [43233] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2944), 2, + ACTIONS(2889), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3233), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43428] = 11, + [43305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + STATE(753), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2990), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + anon_sym_COLON, + ACTIONS(2988), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [43345] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3249), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2469), 6, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2471), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [43480] = 19, + [43417] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [43548] = 18, + ACTIONS(3251), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43487] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3243), 1, + ACTIONS(3229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3231), 1, + anon_sym_AMP_AMP, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3247), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2897), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [43614] = 18, + [43559] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3245), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [43680] = 17, + ACTIONS(3253), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43629] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2510), 1, + sym_primitive_type, + ACTIONS(3255), 1, + sym_identifier, + STATE(711), 1, + sym_alignas_qualifier, + STATE(1113), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2507), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3257), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2498), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(3024), 1, + anon_sym_COLON, + ACTIONS(2500), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [43679] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3247), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3259), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [43744] = 16, + [43751] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3261), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [43806] = 15, + [43823] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3263), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3251), 2, + ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [43866] = 13, + [43895] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2469), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2471), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [43922] = 12, + ACTIONS(3129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3265), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [43965] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, + anon_sym_AMP, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, + anon_sym_QMARK, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3267), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2471), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [43976] = 21, + [44037] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3261), 1, - anon_sym_COLON, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44048] = 21, + ACTIONS(3269), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [44107] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3271), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44120] = 21, + [44179] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3263), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3273), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44192] = 21, + [44251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3275), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2972), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44264] = 20, + [44323] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3265), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [44334] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(758), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3005), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3003), 19, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [44374] = 20, + ACTIONS(2919), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_QMARK, + [44393] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3277), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3267), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44444] = 20, + [44465] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3279), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3269), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44514] = 20, + [44537] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3281), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3283), 1, + anon_sym_RBRACK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3271), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [44584] = 21, + [44611] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3273), 1, + ACTIONS(3285), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44656] = 21, + [44683] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3275), 1, - anon_sym_SEMI, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44728] = 21, + ACTIONS(3287), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44753] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3277), 1, + ACTIONS(3289), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44800] = 21, + [44825] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3279), 1, - anon_sym_SEMI, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44872] = 21, + ACTIONS(3291), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44895] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2547), 1, + sym_primitive_type, + ACTIONS(3293), 1, + sym_identifier, + STATE(711), 1, + sym_alignas_qualifier, + STATE(745), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2544), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(665), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2535), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2459), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3121), 1, + anon_sym_COLON, + ACTIONS(2537), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [44945] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3281), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3295), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44944] = 21, + [45017] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3283), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3297), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45016] = 21, + [45089] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3285), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3299), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45088] = 21, + [45161] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3287), 1, + ACTIONS(3301), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45160] = 21, + [45233] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3289), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3303), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45232] = 20, + [45305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + STATE(747), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2981), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2459), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3121), 1, + anon_sym_COLON, + ACTIONS(2979), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [45345] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2966), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3291), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45302] = 21, + [45417] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3305), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45374] = 21, + [45489] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3295), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45446] = 20, + ACTIONS(3161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [45559] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2449), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3004), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(2469), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(2471), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2928), 3, - anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_QMARK, - [45516] = 21, + [45611] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3297), 1, + ACTIONS(3307), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45588] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(769), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2998), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2996), 19, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [45628] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2555), 1, - sym_primitive_type, - ACTIONS(3299), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1121), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2552), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1076), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3301), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2543), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2545), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [45678] = 21, + [45683] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3303), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3309), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45750] = 21, + [45755] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3311), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45822] = 21, + [45827] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3307), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45894] = 20, + ACTIONS(2471), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [45895] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3129), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45964] = 21, + ACTIONS(2471), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [45961] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, - anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(2469), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, + anon_sym_SLASH, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3309), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46036] = 5, + ACTIONS(2471), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [46027] = 17, ACTIONS(3), 1, sym_comment, - STATE(777), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2991), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2447), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2989), 19, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [46076] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(2469), 1, + anon_sym_PIPE, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3311), 1, - anon_sym_COLON, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46148] = 21, + ACTIONS(2471), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [46091] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + STATE(668), 1, + sym_argument_list, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2469), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3225), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3243), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2471), 6, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3313), 1, - anon_sym_SEMI, - STATE(676), 1, + [46153] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, + anon_sym_SLASH, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2469), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + ACTIONS(2471), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [46220] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [46213] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3315), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + ACTIONS(2469), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2471), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [46292] = 21, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [46269] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3317), 1, + ACTIONS(3313), 1, anon_sym_COLON, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46364] = 21, + [46341] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2449), 1, + anon_sym_DASH_GT, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3004), 1, + anon_sym_DOT, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3319), 1, - anon_sym_SEMI, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(2469), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(2471), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46436] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [46395] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3321), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3315), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46508] = 10, + [46467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - sym_primitive_type, - ACTIONS(3323), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(754), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2519), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2517), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2510), 6, + STATE(768), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2997), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2512), 10, + ACTIONS(2995), 19, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101022,386 +100133,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [46558] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [46507] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3325), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3317), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46630] = 21, + [46579] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - ACTIONS(3327), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3319), 1, + anon_sym_SEMI, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46702] = 20, + [46651] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2188), 1, + anon_sym_RBRACK, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - ACTIONS(3329), 1, - anon_sym_COLON, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46771] = 20, + [46720] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3321), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46840] = 20, + [46789] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3331), 1, + ACTIONS(3323), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46909] = 20, + [46858] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_const, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(1942), 1, + anon_sym_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(711), 1, + sym_alignas_qualifier, + STATE(1452), 1, + sym_parameter_list, + STATE(1469), 1, + sym__abstract_declarator, + ACTIONS(3089), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(665), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3325), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3083), 9, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [46913] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2192), 1, + anon_sym_RBRACK, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - ACTIONS(3333), 1, - anon_sym_RBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46978] = 20, + [46982] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3335), 1, + ACTIONS(3327), 1, anon_sym_COLON, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47047] = 13, + [47051] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(1942), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - STATE(1486), 1, + STATE(1474), 1, sym__abstract_declarator, - ACTIONS(3103), 2, + ACTIONS(3089), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1093), 2, + STATE(1079), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3337), 3, + ACTIONS(3329), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3083), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101411,130 +100568,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [47102] = 13, + [47106] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - ACTIONS(3103), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2803), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3097), 9, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [47157] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3331), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47226] = 13, + [47175] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(1942), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - STATE(1484), 1, + STATE(1483), 1, sym__abstract_declarator, - ACTIONS(3103), 2, + ACTIONS(3089), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3339), 3, + ACTIONS(3333), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3083), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101544,277 +100659,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [47281] = 20, + [47230] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3341), 1, + ACTIONS(3335), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47350] = 20, + [47299] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2170), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, + ACTIONS(3237), 1, + anon_sym_AMP, ACTIONS(3247), 1, + anon_sym_QMARK, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3225), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3243), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47368] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, + anon_sym_SLASH, + ACTIONS(3115), 1, + anon_sym_AMP_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(3119), 1, + anon_sym_CARET, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3337), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2449), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(3109), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3127), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47437] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2190), 1, + anon_sym_RBRACK, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3227), 1, + anon_sym_SLASH, + ACTIONS(3229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3231), 1, + anon_sym_AMP_AMP, + ACTIONS(3233), 1, + anon_sym_PIPE, + ACTIONS(3235), 1, + anon_sym_CARET, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_QMARK, + STATE(668), 1, + sym_argument_list, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47419] = 20, + [47506] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3343), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3339), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47488] = 13, + [47575] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1429), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - ACTIONS(3103), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3071), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3097), 9, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [47543] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3341), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47612] = 13, + [47644] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(1942), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1442), 1, - sym_parameter_list, - STATE(1495), 1, + STATE(1424), 1, sym__abstract_declarator, - ACTIONS(3103), 2, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3089), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, + ACTIONS(3063), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3083), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101824,382 +100995,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [47667] = 20, + [47699] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, + ACTIONS(2186), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47736] = 20, + [47768] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3347), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3343), 1, + anon_sym_COLON, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47805] = 20, + [47837] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2178), 1, + anon_sym_RBRACK, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - ACTIONS(3349), 1, - anon_sym_RBRACK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47874] = 20, + [47906] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - ACTIONS(3351), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3345), 1, + anon_sym_RBRACK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47943] = 20, + [47975] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_COMMA, - STATE(676), 1, + ACTIONS(3347), 1, + anon_sym_RPAREN, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48012] = 20, + [48044] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3355), 1, + ACTIONS(3349), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48081] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2174), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3237), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3259), 1, - anon_sym_QMARK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2455), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48150] = 13, + [48113] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(1942), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1442), 1, + STATE(1452), 1, sym_parameter_list, - STATE(1474), 1, + STATE(1470), 1, sym__abstract_declarator, - ACTIONS(3103), 2, + ACTIONS(3089), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1087), 2, + STATE(1074), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3357), 3, + ACTIONS(3351), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3083), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -102209,378 +101331,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48205] = 20, + [48168] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3353), 1, + anon_sym_RBRACK, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48274] = 20, + [48237] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3355), 1, + anon_sym_COMMA, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48343] = 20, + [48306] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2172), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48412] = 20, + [48375] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2182), 1, + anon_sym_RBRACK, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - ACTIONS(3359), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48481] = 20, + [48444] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 1, + ACTIONS(49), 1, + anon_sym_const, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(1942), 1, + anon_sym_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(711), 1, + sym_alignas_qualifier, + STATE(1398), 1, + sym__abstract_declarator, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3089), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(665), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2821), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3083), 9, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [48499] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2168), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3002), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3239), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48550] = 20, + [48568] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2176), 1, + anon_sym_RBRACK, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN2, + ACTIONS(3227), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3229), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3231), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3233), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3235), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3247), 1, anon_sym_QMARK, - ACTIONS(3361), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3225), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3239), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3241), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3243), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48619] = 20, + [48637] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3113), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3115), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3117), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3119), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3133), 1, anon_sym_QMARK, - ACTIONS(3363), 1, - anon_sym_COLON, - STATE(676), 1, + STATE(668), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2449), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(2455), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3109), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3111), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48688] = 12, + [48703] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3107), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1325), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1367), 1, + sym__declarator, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(49), 10, anon_sym___extension__, anon_sym_const, @@ -102592,70 +101754,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48740] = 12, + [48755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, - sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3067), 1, + anon_sym_SEMI, + ACTIONS(1770), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1764), 18, anon_sym_LPAREN2, - ACTIONS(3115), 1, anon_sym_STAR, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1326), 1, - sym__field_declarator, - STATE(1953), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [48792] = 12, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [48791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3107), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1369), 1, + STATE(1355), 1, sym__declarator, - STATE(1992), 1, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102672,30 +101826,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48844] = 12, + [48843] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3107), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1370), 1, + STATE(1359), 1, sym__declarator, - STATE(1992), 1, + STATE(1984), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102712,35 +101866,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48896] = 12, + [48895] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1299), 1, - sym__declarator, - STATE(1967), 1, + STATE(1322), 1, + sym__field_declarator, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1382), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(49), 10, anon_sym___extension__, anon_sym_const, @@ -102752,30 +101906,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48948] = 12, + [48947] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1300), 1, + STATE(1293), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102792,35 +101946,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49000] = 12, + [48999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1371), 1, - sym__declarator, - STATE(1992), 1, + STATE(1319), 1, + sym__field_declarator, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1382), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(49), 10, anon_sym___extension__, anon_sym_const, @@ -102832,77 +101986,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49052] = 19, + [49051] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3121), 1, - anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [49118] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1301), 1, + STATE(1294), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102919,30 +102026,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49170] = 12, + [49103] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1327), 1, + STATE(1317), 1, sym__field_declarator, - STATE(1953), 1, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1395), 5, + STATE(1382), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -102959,66 +102066,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49222] = 4, + [49155] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_SEMI, - ACTIONS(1778), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1772), 18, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_LPAREN2, + ACTIONS(3105), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [49258] = 11, + STATE(711), 1, + sym_alignas_qualifier, + STATE(1292), 1, + sym__declarator, + STATE(1900), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(665), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [49207] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2540), 1, anon_sym___based, - ACTIONS(3365), 1, + ACTIONS(3357), 1, sym_identifier, - ACTIONS(3371), 1, + ACTIONS(3363), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1134), 1, + STATE(1130), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2510), 2, + ACTIONS(2535), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2519), 2, + ACTIONS(2544), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3368), 4, + ACTIONS(3360), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2512), 10, + ACTIONS(2537), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103029,27 +102144,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49307] = 6, + [49256] = 6, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2601), 2, + ACTIONS(2573), 2, sym_primitive_type, sym_identifier, - ACTIONS(2605), 4, + ACTIONS(2577), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2663), 6, + ACTIONS(2697), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2660), 12, + ACTIONS(2694), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103062,34 +102177,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - [49346] = 11, + [49295] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2503), 1, anon_sym___based, - ACTIONS(3374), 1, + ACTIONS(3366), 1, sym_identifier, - ACTIONS(3380), 1, + ACTIONS(3372), 1, sym_primitive_type, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, - STATE(1143), 1, + STATE(1136), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2543), 2, + ACTIONS(2498), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2552), 2, + ACTIONS(2507), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1120), 2, + STATE(1112), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3377), 4, + ACTIONS(3369), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2545), 10, + ACTIONS(2500), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103100,21 +102215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49395] = 7, + [49344] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3385), 2, + ACTIONS(3377), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(672), 2, + STATE(1119), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3383), 7, + ACTIONS(3375), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103133,21 +102248,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49435] = 7, + [49384] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3389), 2, + ACTIONS(3381), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1125), 2, + STATE(1117), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3387), 7, + ACTIONS(3379), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103166,21 +102281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49475] = 7, + [49424] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(711), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3393), 2, + ACTIONS(3385), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(672), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3391), 7, + ACTIONS(3383), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103199,21 +102314,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49515] = 7, + [49464] = 15, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN2, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(1321), 1, + sym__declarator, + STATE(1393), 1, + sym__abstract_declarator, + STATE(1452), 1, + sym_parameter_list, + STATE(1984), 1, + sym_ms_based_modifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3387), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1489), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [49520] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(711), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3397), 2, + ACTIONS(3391), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1123), 2, + STATE(665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3395), 7, + ACTIONS(3389), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103232,51 +102388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49555] = 15, + [49560] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(2805), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(1329), 1, - sym__declarator, - STATE(1389), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1992), 1, - sym_ms_based_modifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3399), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1478), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [49611] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -103286,18 +102401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1287), 1, + STATE(1280), 1, sym_ms_call_modifier, - STATE(1438), 1, + STATE(1430), 1, sym__type_declarator, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103310,20 +102425,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [49660] = 5, + [49609] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + ACTIONS(3395), 1, + anon_sym_LPAREN2, + STATE(991), 1, + sym_preproc_argument_list, + ACTIONS(3397), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3393), 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, + [49643] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2747), 2, + ACTIONS(2753), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3401), 4, + ACTIONS(3399), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2745), 15, + ACTIONS(2751), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103339,20 +102483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49694] = 5, + [49677] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(1124), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2668), 2, + ACTIONS(2765), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3404), 4, + ACTIONS(3402), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2666), 15, + ACTIONS(2763), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103368,20 +102512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49728] = 5, + [49711] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2672), 2, + ACTIONS(2656), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3407), 4, + ACTIONS(3405), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2670), 15, + ACTIONS(2654), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103397,20 +102541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49762] = 5, + [49745] = 5, ACTIONS(3), 1, sym_comment, - STATE(1140), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2676), 2, + ACTIONS(2757), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3410), 4, + ACTIONS(3408), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2674), 15, + ACTIONS(2755), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103426,20 +102570,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49796] = 5, + [49779] = 5, ACTIONS(3), 1, sym_comment, - STATE(1141), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2682), 2, + ACTIONS(2660), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3413), 4, + ACTIONS(3411), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2680), 15, + ACTIONS(2658), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103455,20 +102599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49830] = 5, + [49813] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(1122), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2688), 2, + ACTIONS(2664), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3416), 4, + ACTIONS(3414), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2686), 15, + ACTIONS(2662), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103484,12 +102628,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49864] = 5, + [49847] = 15, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3417), 1, + sym_identifier, + STATE(651), 1, + sym__old_style_function_declarator, + STATE(1300), 1, + sym_function_declarator, + STATE(1316), 1, + sym_ms_call_modifier, + STATE(1356), 1, + sym__declarator, + STATE(1458), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1606), 1, + sym_init_declarator, + STATE(1900), 1, + sym_ms_based_modifier, + STATE(1363), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [49901] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1125), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2652), 2, + ACTIONS(2670), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(3419), 4, @@ -103497,7 +102680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2650), 15, + ACTIONS(2668), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103513,112 +102696,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49898] = 15, + [49935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2676), 2, anon_sym_LPAREN2, - ACTIONS(3107), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3422), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2674), 15, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(653), 1, - sym__old_style_function_declarator, - STATE(1306), 1, - sym_ms_call_modifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1365), 1, - sym__declarator, - STATE(1446), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1597), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49952] = 15, + [49969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2630), 2, anon_sym_LPAREN2, - ACTIONS(3107), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3425), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2628), 15, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(649), 1, - sym__old_style_function_declarator, - STATE(1310), 1, - sym_ms_call_modifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1376), 1, - sym__declarator, - STATE(1445), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1586), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [50006] = 15, + [50003] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, STATE(652), 1, sym__old_style_function_declarator, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1316), 1, + STATE(1302), 1, sym_ms_call_modifier, - STATE(1374), 1, + STATE(1362), 1, sym__declarator, - STATE(1468), 1, + STATE(1447), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1673), 1, + STATE(1575), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103630,34 +102793,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50060] = 15, + [50057] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(658), 1, + STATE(657), 1, sym__old_style_function_declarator, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1319), 1, + STATE(1310), 1, sym_ms_call_modifier, - STATE(1373), 1, + STATE(1364), 1, sym__declarator, - STATE(1459), 1, + STATE(1439), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1644), 1, + STATE(1632), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103669,49 +102832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50114] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2755), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3424), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2753), 15, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [50148] = 5, + [50111] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2759), 2, + ACTIONS(2745), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3427), 4, + ACTIONS(3428), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2757), 15, + ACTIONS(2743), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103727,20 +102861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50182] = 5, + [50145] = 5, ACTIONS(3), 1, sym_comment, - STATE(1135), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2692), 2, + ACTIONS(2636), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3430), 4, + ACTIONS(3431), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2690), 15, + ACTIONS(2634), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103756,20 +102890,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50216] = 5, + [50179] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2663), 2, + ACTIONS(2697), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3433), 4, + ACTIONS(3434), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2660), 15, + ACTIONS(2694), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103785,79 +102919,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50250] = 6, + [50213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1778), 1, anon_sym_STAR, - ACTIONS(2738), 1, - anon_sym_LPAREN2, - STATE(1129), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3437), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1770), 15, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [50286] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + ACTIONS(2712), 1, anon_sym_LPAREN2, - STATE(1012), 1, - sym_preproc_argument_list, - ACTIONS(3444), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3440), 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, - [50320] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1130), 1, + STATE(1134), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2642), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3446), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2640), 15, + ACTIONS(1762), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103873,20 +102949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50354] = 5, + [50249] = 5, ACTIONS(3), 1, sym_comment, - STATE(1131), 1, + STATE(1135), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2698), 2, + ACTIONS(2646), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3449), 4, + ACTIONS(3441), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2696), 15, + ACTIONS(2644), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103902,32 +102978,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50388] = 14, + [50283] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1306), 1, - sym_ms_call_modifier, - STATE(1311), 1, + STATE(661), 1, + sym__old_style_function_declarator, + STATE(1300), 1, sym_function_declarator, - STATE(1394), 1, + STATE(1312), 1, + sym_ms_call_modifier, + STATE(1361), 1, sym__declarator, - STATE(1446), 1, + STATE(1455), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1597), 1, + STATE(1592), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103939,32 +103017,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50439] = 14, + [50337] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1318), 1, + STATE(1315), 1, sym_ms_call_modifier, - STATE(1445), 1, + STATE(1455), 1, sym__declaration_declarator, - STATE(1469), 1, + STATE(1457), 1, sym__declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1586), 1, + STATE(1592), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103976,110 +103054,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50490] = 16, - ACTIONS(3), 1, + [50388] = 5, + ACTIONS(3393), 1, + anon_sym_LF, + ACTIONS(3444), 1, + anon_sym_LPAREN2, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, - anon_sym_RPAREN, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - STATE(1619), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3456), 2, + STATE(1230), 1, + sym_preproc_argument_list, + ACTIONS(3397), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50545] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3460), 1, anon_sym_SLASH, - ACTIONS(3462), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, anon_sym_AMP_AMP, - ACTIONS(3466), 1, anon_sym_PIPE, - ACTIONS(3468), 1, anon_sym_CARET, - ACTIONS(3470), 1, anon_sym_AMP, - ACTIONS(3480), 1, - anon_sym_RPAREN, - STATE(1604), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50600] = 14, + [50421] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1320), 1, + STATE(1307), 1, sym_ms_call_modifier, - STATE(1459), 1, + STATE(1447), 1, sym__declaration_declarator, - STATE(1469), 1, + STATE(1457), 1, sym__declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1644), 1, + STATE(1575), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104091,32 +103119,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50651] = 14, + [50472] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1319), 1, + STATE(1302), 1, sym_ms_call_modifier, - STATE(1402), 1, + STATE(1380), 1, sym__declarator, - STATE(1459), 1, + STATE(1447), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1644), 1, + STATE(1575), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104128,32 +103156,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50702] = 14, + [50523] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1323), 1, + STATE(1312), 1, sym_ms_call_modifier, - STATE(1446), 1, - sym__declaration_declarator, - STATE(1469), 1, + STATE(1376), 1, sym__declarator, - STATE(1512), 1, + STATE(1455), 1, + sym__declaration_declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1597), 1, + STATE(1592), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104165,64 +103193,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50753] = 9, + [50574] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(2917), 1, - anon_sym_const, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3484), 1, - anon_sym_COLON, - STATE(774), 1, - sym_attribute_specifier, - STATE(1044), 1, - sym_enumerator_list, - ACTIONS(2919), 14, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3103), 1, anon_sym_LPAREN2, + ACTIONS(3105), 1, anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - [50794] = 14, + ACTIONS(3417), 1, + sym_identifier, + STATE(1300), 1, + sym_function_declarator, + STATE(1310), 1, + sym_ms_call_modifier, + STATE(1372), 1, + sym__declarator, + STATE(1439), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1632), 1, + sym_init_declarator, + STATE(1900), 1, + sym_ms_based_modifier, + STATE(1363), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [50625] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3448), 1, + sym_identifier, + ACTIONS(3450), 1, + anon_sym_RPAREN, + ACTIONS(3452), 1, + anon_sym_LPAREN2, + ACTIONS(3454), 1, + anon_sym_defined, + ACTIONS(3460), 1, + sym_number_literal, + ACTIONS(3456), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3458), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3462), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1149), 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, + [50668] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1309), 1, + STATE(1300), 1, + sym_function_declarator, + STATE(1314), 1, sym_ms_call_modifier, - STATE(1311), 1, + STATE(1439), 1, + sym__declaration_declarator, + STATE(1457), 1, + sym__declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1632), 1, + sym_init_declarator, + STATE(1900), 1, + sym_ms_based_modifier, + STATE(1363), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [50719] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3417), 1, + sym_identifier, + STATE(1300), 1, sym_function_declarator, - STATE(1469), 1, + STATE(1305), 1, + sym_ms_call_modifier, + STATE(1457), 1, sym__declarator, - STATE(1494), 1, + STATE(1477), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1740), 1, + STATE(1765), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104234,71 +103337,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50845] = 16, + [50770] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3464), 1, anon_sym_COMMA, - ACTIONS(3460), 1, + ACTIONS(3466), 1, + anon_sym_RPAREN, + ACTIONS(3472), 1, anon_sym_SLASH, - ACTIONS(3462), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3466), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3468), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3470), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_RPAREN, - STATE(1582), 1, + STATE(1655), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3456), 2, + ACTIONS(3468), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(3470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3472), 2, + ACTIONS(3484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, + ACTIONS(3486), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3476), 2, + ACTIONS(3488), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, + ACTIONS(3490), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50900] = 14, + [50825] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(3448), 1, + sym_identifier, + ACTIONS(3452), 1, + anon_sym_LPAREN2, + ACTIONS(3454), 1, + anon_sym_defined, + ACTIONS(3492), 1, + anon_sym_RPAREN, + ACTIONS(3494), 1, + sym_number_literal, + ACTIONS(3456), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3458), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3462), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1152), 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, + [50868] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1322), 1, + STATE(1311), 1, sym_ms_call_modifier, - STATE(1468), 1, - sym__declaration_declarator, - STATE(1469), 1, + STATE(1457), 1, sym__declarator, - STATE(1512), 1, + STATE(1465), 1, + sym__declaration_declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1673), 1, + STATE(1605), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104310,32 +103446,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50951] = 14, + [50919] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3464), 1, + anon_sym_COMMA, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3496), 1, + anon_sym_RPAREN, + STATE(1593), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50974] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3464), 1, + anon_sym_COMMA, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3498), 1, + anon_sym_RPAREN, + STATE(1578), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51029] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1312), 1, + STATE(1316), 1, sym_ms_call_modifier, - STATE(1457), 1, - sym__declaration_declarator, - STATE(1469), 1, + STATE(1387), 1, sym__declarator, - STATE(1512), 1, + STATE(1458), 1, + sym__declaration_declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1635), 1, + STATE(1606), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104347,102 +103561,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51002] = 14, + [51080] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1307), 1, + STATE(1298), 1, sym_ms_call_modifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1453), 1, - sym__declaration_declarator, - STATE(1469), 1, + STATE(1457), 1, sym__declarator, - STATE(1512), 1, + STATE(1458), 1, + sym__declaration_declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1620), 1, + STATE(1606), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51053] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 1, - sym_identifier, - ACTIONS(3491), 1, - anon_sym_RPAREN, - ACTIONS(3493), 1, - anon_sym_LPAREN2, - ACTIONS(3495), 1, - anon_sym_defined, - ACTIONS(3501), 1, - sym_number_literal, - ACTIONS(3497), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3499), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3503), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1150), 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, - [51096] = 14, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [51131] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1310), 1, + STATE(1295), 1, sym_ms_call_modifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1404), 1, - sym__declarator, - STATE(1445), 1, + STATE(1437), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1457), 1, + sym__declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1586), 1, + STATE(1678), 1, sym_init_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104454,65 +103635,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51147] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 1, - sym_identifier, - ACTIONS(3493), 1, - anon_sym_LPAREN2, - ACTIONS(3495), 1, - anon_sym_defined, - ACTIONS(3505), 1, - anon_sym_RPAREN, - ACTIONS(3507), 1, - sym_number_literal, - ACTIONS(3497), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3499), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3503), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1151), 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, - [51190] = 10, + [51182] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3509), 1, + ACTIONS(3500), 1, anon_sym_RPAREN, - ACTIONS(3511), 1, + ACTIONS(3502), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1157), 7, + STATE(1153), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104520,95 +103668,62 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51233] = 14, + [51225] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1316), 1, - sym_ms_call_modifier, - STATE(1378), 1, - sym__declarator, - STATE(1468), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1673), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51284] = 5, - ACTIONS(3440), 1, - anon_sym_LF, - ACTIONS(3513), 1, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(2947), 1, + anon_sym_const, + ACTIONS(2954), 1, + anon_sym_LBRACE, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(3506), 1, + anon_sym_COLON, + STATE(746), 1, + sym_attribute_specifier, + STATE(1021), 1, + sym_enumerator_list, + ACTIONS(2949), 14, anon_sym_LPAREN2, - ACTIONS(3515), 1, - sym_comment, - STATE(1240), 1, - sym_preproc_argument_list, - ACTIONS(3444), 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, - [51317] = 9, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + [51266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3517), 1, + ACTIONS(3519), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1202), 7, + STATE(1249), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104616,80 +103731,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51357] = 3, + [51306] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2415), 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, - [51385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3519), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51413] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3533), 1, + ACTIONS(3523), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1226), 7, + STATE(1201), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104697,65 +103762,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51453] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3519), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [51501] = 9, + [51346] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3537), 1, + ACTIONS(3525), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1239), 7, + STATE(1228), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104763,30 +103793,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51541] = 9, + [51386] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3539), 1, + ACTIONS(3527), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1178), 7, + STATE(1223), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104794,30 +103824,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51581] = 9, + [51426] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3541), 1, + ACTIONS(3529), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1250), 7, + STATE(1216), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104825,30 +103855,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51621] = 9, + [51466] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3543), 1, + ACTIONS(3531), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1241), 7, + STATE(1232), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104856,16 +103886,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51661] = 3, + [51506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 5, + ACTIONS(3535), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3545), 15, + ACTIONS(3533), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -104881,30 +103911,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [51689] = 9, + [51534] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3549), 1, + ACTIONS(3537), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1220), 7, + STATE(1225), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104912,64 +103942,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51729] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3519), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [51775] = 9, + [51574] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3551), 1, + ACTIONS(3539), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1251), 7, + STATE(1229), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104977,66 +103973,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51815] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3553), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51865] = 9, + [51614] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3555), 1, + ACTIONS(3541), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1227), 7, + STATE(1210), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105044,64 +104004,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51905] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3521), 1, - anon_sym_PIPE, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3519), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [51951] = 9, + [51654] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3557), 1, + ACTIONS(3543), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 7, + STATE(1224), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105109,63 +104035,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51991] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3521), 1, - anon_sym_PIPE, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3519), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [52035] = 9, + [51694] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3559), 1, + ACTIONS(3545), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1242), 7, + STATE(1220), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105173,30 +104066,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52075] = 9, + [51734] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3561), 1, + ACTIONS(3547), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1187), 7, + STATE(1179), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105204,62 +104097,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52115] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3521), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3519), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [52157] = 9, + [51774] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3563), 1, + ACTIONS(3549), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1228), 7, + STATE(1211), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105267,86 +104128,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52197] = 9, + [51814] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, + ACTIONS(3448), 1, + sym_identifier, + ACTIONS(3452), 1, + anon_sym_LPAREN2, + ACTIONS(3454), 1, + anon_sym_defined, + ACTIONS(3551), 1, + sym_number_literal, ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3521), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3519), 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, - [52237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 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, - [52265] = 9, + ACTIONS(3462), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1203), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [51854] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3569), 1, + ACTIONS(3553), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1238), 7, + STATE(1218), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105354,30 +104190,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52305] = 9, + [51894] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3571), 1, + ACTIONS(3555), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1189), 7, + STATE(1231), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105385,30 +104221,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52345] = 9, + [51934] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3573), 1, + ACTIONS(3557), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1180), 7, + STATE(1244), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105416,30 +104252,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52385] = 9, + [51974] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3575), 1, + ACTIONS(3559), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1237), 7, + STATE(1226), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105447,30 +104283,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52425] = 9, + [52014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3577), 1, + ACTIONS(3561), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1229), 7, + STATE(1214), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105478,30 +104314,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52465] = 9, + [52054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3565), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3563), 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, + [52088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3579), 1, + ACTIONS(3567), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1233), 7, + STATE(1217), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105509,30 +104373,91 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52505] = 9, + [52128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3569), 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, + [52156] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3573), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3581), 1, + ACTIONS(3575), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 7, + STATE(1165), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105540,30 +104465,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52545] = 9, + [52246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3583), 1, + ACTIONS(3577), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1176), 7, + STATE(1233), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105571,24 +104496,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52585] = 9, + [52286] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3585), 1, + ACTIONS(3579), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -105602,30 +104527,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52625] = 9, + [52326] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3587), 1, + ACTIONS(3581), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1260), 7, + STATE(1241), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105633,30 +104558,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52665] = 9, + [52366] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3589), 1, + ACTIONS(3583), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1230), 7, + STATE(1207), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105664,59 +104589,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52705] = 7, + [52406] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, + ACTIONS(3448), 1, + sym_identifier, + ACTIONS(3452), 1, + anon_sym_LPAREN2, + ACTIONS(3454), 1, + anon_sym_defined, + ACTIONS(3585), 1, + sym_number_literal, ACTIONS(3456), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3521), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3519), 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, - [52741] = 9, + ACTIONS(3462), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1191), 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, + [52446] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3591), 1, + ACTIONS(3587), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1225), 7, + STATE(1252), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105724,30 +104651,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52781] = 9, + [52486] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3593), 1, + ACTIONS(3589), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1253), 7, + STATE(1219), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105755,23 +104682,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52821] = 6, + [52526] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3472), 1, anon_sym_SLASH, - ACTIONS(3456), 2, + ACTIONS(3468), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(3470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3521), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3486), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3519), 11, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3565), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3563), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -105779,34 +104713,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52855] = 9, + [52566] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3595), 1, + ACTIONS(3591), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1254), 7, + STATE(1209), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105814,30 +104744,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52895] = 9, + [52606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3595), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3593), 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, + [52634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, ACTIONS(3597), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1231), 7, + STATE(1196), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105845,30 +104800,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52935] = 9, + [52674] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, ACTIONS(3599), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1171), 7, + STATE(1245), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105876,30 +104831,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52975] = 9, + [52714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3565), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3563), 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, + [52746] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, ACTIONS(3601), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1236), 7, + STATE(1246), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105907,30 +104889,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53015] = 9, + [52786] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, ACTIONS(3603), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1257), 7, + STATE(1222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105938,30 +104920,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53055] = 9, + [52826] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, ACTIONS(3605), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1258), 7, + STATE(1247), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105969,30 +104951,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53095] = 9, + [52866] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3513), 1, anon_sym_defined, ACTIONS(3607), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1224), 7, + STATE(1234), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106000,16 +104982,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53135] = 3, + [52906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 5, + ACTIONS(3565), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3609), 15, + ACTIONS(3563), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -106025,30 +105007,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [53163] = 9, + [52934] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3613), 1, + ACTIONS(3609), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1223), 7, + STATE(1204), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106056,61 +105038,94 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53203] = 9, + [52974] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - sym_identifier, - ACTIONS(3525), 1, - anon_sym_LPAREN2, - ACTIONS(3527), 1, - anon_sym_defined, - ACTIONS(3615), 1, - sym_number_literal, - ACTIONS(3529), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3468), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1232), 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, - [53243] = 9, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3563), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [53022] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3565), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3563), 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, + [53058] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3617), 1, + ACTIONS(3611), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1182), 7, + STATE(1250), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106118,30 +105133,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53283] = 9, + [53098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3509), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(3511), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3513), 1, anon_sym_defined, - ACTIONS(3619), 1, + ACTIONS(3613), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(3517), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(3521), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1184), 7, + STATE(1221), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106149,80 +105164,180 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53323] = 3, + [53138] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3563), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [53184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3617), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3615), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, + [53212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 5, + ACTIONS(3472), 1, anon_sym_SLASH, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3565), 1, anon_sym_PIPE, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3563), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [53258] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3482), 1, anon_sym_AMP, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3621), 15, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3563), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [53302] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3468), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3470), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3490), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53351] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 1, - sym_identifier, - ACTIONS(3493), 1, - anon_sym_LPAREN2, - ACTIONS(3495), 1, - anon_sym_defined, - ACTIONS(3625), 1, - sym_number_literal, - ACTIONS(3497), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3499), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3503), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1169), 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, - [53391] = 5, + ACTIONS(3565), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3563), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [53344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(2437), 5, anon_sym_SLASH, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3521), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3519), 13, + ACTIONS(2439), 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, @@ -106232,30 +105347,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [53423] = 9, + [53372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3448), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(3452), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(3454), 1, anon_sym_defined, - ACTIONS(3627), 1, + ACTIONS(3619), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(3456), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(3458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(3462), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1248), 7, + STATE(1182), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106263,47 +105378,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53463] = 14, + [53412] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3472), 1, anon_sym_SLASH, - ACTIONS(3462), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3466), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3468), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3470), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3629), 1, + ACTIONS(3621), 1, anon_sym_RPAREN, - ACTIONS(3456), 2, + ACTIONS(3468), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(3470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3472), 2, + ACTIONS(3484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, + ACTIONS(3486), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3476), 2, + ACTIONS(3488), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, + ACTIONS(3490), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53512] = 3, - ACTIONS(3515), 1, + [53461] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3569), 1, anon_sym_LF, - ACTIONS(3521), 18, + ACTIONS(3571), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106322,182 +105437,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53539] = 12, - ACTIONS(3515), 1, + [53488] = 4, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3521), 1, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3565), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, - ACTIONS(3635), 1, anon_sym_AMP_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3639), 1, anon_sym_CARET, - ACTIONS(3641), 1, anon_sym_AMP, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + [53517] = 3, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(3563), 1, + anon_sym_LF, + ACTIONS(3565), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 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, - [53584] = 11, - ACTIONS(3515), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53544] = 11, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3521), 2, + ACTIONS(3565), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53627] = 10, - ACTIONS(3515), 1, + [53587] = 10, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3521), 3, + ACTIONS(3565), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53668] = 9, - ACTIONS(3515), 1, + [53628] = 9, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 4, + ACTIONS(3565), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53707] = 8, - ACTIONS(3515), 1, + [53667] = 8, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3521), 5, + ACTIONS(3565), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [53744] = 7, - ACTIONS(3515), 1, + [53704] = 7, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3521), 7, + ACTIONS(3565), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106505,22 +105636,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [53779] = 6, - ACTIONS(3515), 1, + [53739] = 6, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 11, + ACTIONS(3565), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106532,19 +105663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53812] = 5, - ACTIONS(3515), 1, + [53772] = 5, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3563), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 13, + ACTIONS(3565), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106558,80 +105689,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53843] = 12, - ACTIONS(3515), 1, + [53803] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3649), 1, + ACTIONS(3639), 1, anon_sym_LF, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3631), 2, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53888] = 14, - ACTIONS(3), 1, + [53848] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3468), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3470), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3653), 1, - anon_sym_RPAREN, - ACTIONS(3456), 2, + ACTIONS(3641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3645), 1, + anon_sym_LF, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, + ACTIONS(3637), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3635), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53937] = 3, - ACTIONS(3515), 1, + anon_sym_LT, + [53893] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3593), 1, anon_sym_LF, - ACTIONS(3623), 18, + ACTIONS(3595), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106650,108 +105779,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53964] = 12, - ACTIONS(3515), 1, + [53920] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3655), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3647), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54009] = 3, - ACTIONS(3515), 1, + [53965] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3545), 1, - anon_sym_LF, - ACTIONS(3547), 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(3627), 1, anon_sym_PIPE, + ACTIONS(3629), 1, anon_sym_CARET, + ACTIONS(3631), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54036] = 12, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_CARET, ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3651), 1, anon_sym_PIPE_PIPE, - ACTIONS(3657), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54081] = 4, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3519), 1, + [54010] = 3, + ACTIONS(3181), 1, anon_sym_LF, - ACTIONS(3633), 3, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(3179), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106765,45 +105869,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54110] = 12, - ACTIONS(3515), 1, + [54037] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3659), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3651), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54155] = 3, - ACTIONS(3203), 1, - anon_sym_LF, - ACTIONS(3515), 1, + [54082] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SLASH, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3653), 1, + anon_sym_RPAREN, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3490), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54131] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3201), 18, + ACTIONS(3533), 1, + anon_sym_LF, + ACTIONS(3535), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106822,78 +105961,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54182] = 12, - ACTIONS(3515), 1, + [54158] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3661), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3655), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54227] = 12, - ACTIONS(3515), 1, + [54203] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3663), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3657), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54272] = 3, - ACTIONS(2415), 1, + [54248] = 3, + ACTIONS(2439), 1, anon_sym_LF, - ACTIONS(3515), 1, + ACTIONS(3446), 1, sym_comment, - ACTIONS(2413), 18, + ACTIONS(2437), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106912,12 +106051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54299] = 3, - ACTIONS(3199), 1, + [54275] = 3, + ACTIONS(3167), 1, anon_sym_LF, - ACTIONS(3515), 1, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3197), 18, + ACTIONS(3165), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106936,12 +106075,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54326] = 3, - ACTIONS(3515), 1, + [54302] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3615), 1, + anon_sym_LF, + ACTIONS(3617), 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, + [54329] = 3, + ACTIONS(3195), 1, anon_sym_LF, - ACTIONS(3567), 18, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(3193), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106960,26 +106123,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54353] = 11, + [54356] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(662), 1, + STATE(655), 1, sym__old_style_function_declarator, - STATE(1354), 1, + STATE(1350), 1, sym_ms_call_modifier, - STATE(1393), 1, + STATE(1390), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -106992,69 +106155,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [54396] = 3, - ACTIONS(3193), 1, - anon_sym_LF, - ACTIONS(3515), 1, + [54399] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3191), 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(3627), 1, anon_sym_PIPE, + ACTIONS(3629), 1, anon_sym_CARET, + ACTIONS(3631), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54423] = 12, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_CARET, ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3651), 1, anon_sym_PIPE_PIPE, - ACTIONS(3665), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3659), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54468] = 3, - ACTIONS(3189), 1, + [54444] = 3, + ACTIONS(3191), 1, anon_sym_LF, - ACTIONS(3515), 1, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3187), 18, + ACTIONS(3189), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107073,92 +106212,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54495] = 12, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_CARET, - ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3667), 1, - anon_sym_LF, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3647), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3645), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [54540] = 12, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_CARET, - ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3669), 1, - anon_sym_LF, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3647), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3645), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [54585] = 11, + [54471] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(659), 1, + STATE(658), 1, sym__old_style_function_declarator, - STATE(1349), 1, + STATE(1344), 1, sym_ms_call_modifier, - STATE(1381), 1, + STATE(1384), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107171,214 +106244,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [54628] = 12, - ACTIONS(3515), 1, + [54514] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3671), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3661), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54673] = 12, - ACTIONS(3515), 1, + [54559] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3673), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3663), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54718] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(655), 1, - sym__old_style_function_declarator, - STATE(1355), 1, - sym_ms_call_modifier, - STATE(1400), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54761] = 3, - ACTIONS(3515), 1, + [54604] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3609), 1, - anon_sym_LF, - ACTIONS(3611), 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(3627), 1, anon_sym_PIPE, + ACTIONS(3629), 1, anon_sym_CARET, + ACTIONS(3631), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54788] = 12, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_CARET, ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3651), 1, anon_sym_PIPE_PIPE, - ACTIONS(3675), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3665), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54833] = 12, - ACTIONS(3515), 1, + [54649] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3677), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3667), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54878] = 11, + [54694] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(648), 1, + STATE(654), 1, sym__old_style_function_declarator, - STATE(1358), 1, + STATE(1348), 1, sym_ms_call_modifier, - STATE(1401), 1, + STATE(1379), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107391,57 +106408,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [54921] = 12, - ACTIONS(3515), 1, + [54737] = 12, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3627), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3629), 1, anon_sym_CARET, + ACTIONS(3631), 1, + anon_sym_AMP, ACTIONS(3641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3669), 1, + anon_sym_LF, + ACTIONS(3625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3633), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3637), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3635), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [54782] = 12, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(3627), 1, + anon_sym_PIPE, + ACTIONS(3629), 1, + anon_sym_CARET, + ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3641), 1, anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3671), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(3625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(3637), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54966] = 10, + [54827] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1355), 1, + STATE(660), 1, + sym__old_style_function_declarator, + STATE(1349), 1, sym_ms_call_modifier, - STATE(1416), 1, + STATE(1371), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107454,24 +106506,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55006] = 10, + [54870] = 12, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(3563), 1, + anon_sym_LF, + ACTIONS(3565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3627), 1, + anon_sym_PIPE, + ACTIONS(3629), 1, + anon_sym_CARET, + ACTIONS(3631), 1, + anon_sym_AMP, + ACTIONS(3643), 1, + anon_sym_AMP_AMP, + ACTIONS(3625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3633), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3637), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3635), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [54915] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1358), 1, + STATE(1349), 1, sym_ms_call_modifier, - STATE(1435), 1, + STATE(1413), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107484,14 +106569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55046] = 8, + [54955] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3685), 1, + ACTIONS(3677), 1, anon_sym_LBRACK, - STATE(1275), 1, + STATE(1268), 1, sym_gnu_asm_expression, ACTIONS(35), 2, anon_sym___attribute__, @@ -107500,11 +106585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym___asm, - STATE(1273), 3, + STATE(1264), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3683), 7, + ACTIONS(3675), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107512,29 +106597,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55082] = 10, + [54991] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(1338), 1, + STATE(1352), 1, sym_ms_call_modifier, - STATE(1454), 1, - sym__declarator, - STATE(1967), 1, + STATE(1460), 1, + sym__field_declarator, + STATE(1990), 1, sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1382), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -107542,29 +106627,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55122] = 10, + [55031] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1337), 1, sym_ms_call_modifier, - STATE(1470), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1442), 1, + sym__declarator, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -107572,56 +106657,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55162] = 12, + [55071] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1815), 1, anon_sym_LPAREN2, - ACTIONS(1825), 1, + ACTIONS(1817), 1, anon_sym_STAR, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2813), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(1442), 1, - sym_parameter_list, - STATE(1443), 1, + STATE(1433), 1, sym__declarator, - STATE(1547), 1, + STATE(1452), 1, + sym_parameter_list, + STATE(1551), 1, sym__abstract_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1467), 4, + STATE(1443), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [55206] = 10, + [55115] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, + ACTIONS(3103), 1, + anon_sym_LPAREN2, ACTIONS(3105), 1, + anon_sym_STAR, + STATE(1350), 1, + sym_ms_call_modifier, + STATE(1403), 1, + sym__declarator, + STATE(1900), 1, + sym_ms_based_modifier, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [55155] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1354), 1, + STATE(1344), 1, sym_ms_call_modifier, - STATE(1412), 1, + STATE(1422), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107634,55 +106749,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55246] = 11, + [55195] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3685), 1, + ACTIONS(3677), 1, anon_sym_LBRACK, - STATE(1272), 1, + STATE(1263), 1, sym_gnu_asm_expression, STATE(1313), 1, sym_attribute_specifier, - STATE(1396), 1, + STATE(1370), 1, aux_sym_type_definition_repeat1, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3687), 2, + ACTIONS(3679), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1273), 2, + STATE(1264), 2, sym_preproc_call_expression, aux_sym_function_declarator_repeat1, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3683), 4, + ACTIONS(3675), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55288] = 10, + [55237] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1349), 1, + STATE(1348), 1, sym_ms_call_modifier, - STATE(1408), 1, + STATE(1406), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107695,24 +106810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55328] = 6, + [55277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3694), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1270), 3, + STATE(1269), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3697), 4, + ACTIONS(3683), 4, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3692), 7, + ACTIONS(3681), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107720,83 +106835,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55359] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1350), 1, - sym__type_declarator, - STATE(1523), 1, - sym__type_definition_declarators, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55400] = 10, + [55308] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3703), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, STATE(1313), 1, sym_attribute_specifier, - STATE(1380), 1, + STATE(1369), 1, aux_sym_type_definition_repeat1, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3699), 2, + ACTIONS(3685), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1281), 2, + STATE(1262), 2, sym_preproc_call_expression, aux_sym_function_declarator_repeat1, - ACTIONS(3705), 3, + ACTIONS(3691), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3701), 4, + ACTIONS(3687), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55439] = 6, + [55347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3673), 1, sym_identifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1270), 3, + STATE(1269), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3703), 4, + ACTIONS(3689), 4, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3701), 7, + ACTIONS(3687), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107804,10 +106889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55470] = 11, + [55378] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -107817,52 +106902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1338), 1, sym__type_declarator, - STATE(1510), 1, + STATE(1503), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55511] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 1, - sym_identifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1281), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3703), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3701), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55542] = 11, + [55419] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -107872,27 +106932,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1338), 1, sym__type_declarator, - STATE(1499), 1, + STATE(1513), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55583] = 11, + [55460] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -107902,27 +106962,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1338), 1, sym__type_declarator, - STATE(1501), 1, + STATE(1510), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55624] = 11, + [55501] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1262), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3689), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3687), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [55532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3693), 1, + sym_identifier, + ACTIONS(3698), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1269), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3701), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3696), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [55563] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -107932,27 +107042,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1338), 1, sym__type_declarator, - STATE(1503), 1, + STATE(1493), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55665] = 11, + [55604] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -107962,27 +107072,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1338), 1, sym__type_declarator, - STATE(1508), 1, + STATE(1515), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55706] = 11, + [55645] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -107992,52 +107102,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1338), 1, sym__type_declarator, - STATE(1519), 1, + STATE(1502), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55747] = 6, + [55686] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3010), 1, sym_identifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1270), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3709), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3707), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3012), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55778] = 11, + ACTIONS(3014), 1, + anon_sym_STAR, + ACTIONS(3018), 1, + sym_primitive_type, + STATE(1338), 1, + sym__type_declarator, + STATE(1496), 1, + sym__type_definition_declarators, + STATE(1920), 1, + sym_ms_based_modifier, + ACTIONS(3016), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1415), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [55727] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -108047,96 +107162,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1338), 1, sym__type_declarator, - STATE(1522), 1, + STATE(1508), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55819] = 12, + [55768] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3101), 1, anon_sym_STAR, - ACTIONS(3711), 1, + ACTIONS(3703), 1, anon_sym_SEMI, - STATE(1303), 1, + STATE(1304), 1, sym__field_declarator, - STATE(1543), 1, + STATE(1536), 1, sym__field_declaration_declarator, - STATE(1921), 1, + STATE(1976), 1, sym_attribute_specifier, - STATE(1953), 1, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1395), 5, + STATE(1382), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [55861] = 12, + [55810] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3010), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3012), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3014), 1, anon_sym_STAR, - ACTIONS(3713), 1, - anon_sym_SEMI, - STATE(1303), 1, - sym__field_declarator, - STATE(1533), 1, - sym__field_declaration_declarator, - STATE(1929), 1, - sym_attribute_specifier, - STATE(1953), 1, + ACTIONS(3018), 1, + sym_primitive_type, + STATE(1357), 1, + sym__type_declarator, + STATE(1920), 1, sym_ms_based_modifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55903] = 5, + ACTIONS(3016), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1415), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [55848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, + ACTIONS(3709), 1, anon_sym_LBRACK_LBRACK, - STATE(1285), 2, + STATE(1277), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3717), 3, + ACTIONS(3707), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3715), 10, + ACTIONS(3705), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108147,68 +107260,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [55931] = 12, + [55876] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3101), 1, anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3712), 1, anon_sym_SEMI, - STATE(1303), 1, + STATE(1304), 1, sym__field_declarator, - STATE(1568), 1, + STATE(1561), 1, sym__field_declaration_declarator, - STATE(1886), 1, + STATE(1869), 1, sym_attribute_specifier, - STATE(1953), 1, + STATE(1990), 1, sym_ms_based_modifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1395), 5, + STATE(1382), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [55973] = 10, + [55918] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3101), 1, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1461), 1, - sym__type_declarator, - STATE(1810), 1, + ACTIONS(3714), 1, + anon_sym_SEMI, + STATE(1304), 1, + sym__field_declarator, + STATE(1521), 1, + sym__field_declaration_declarator, + STATE(1852), 1, + sym_attribute_specifier, + STATE(1990), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [56011] = 10, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1382), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [55960] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, ACTIONS(3010), 1, sym_identifier, @@ -108218,47 +107333,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3018), 1, sym_primitive_type, - STATE(1363), 1, + STATE(1446), 1, sym__type_declarator, - STATE(1810), 1, + STATE(1920), 1, sym_ms_based_modifier, ACTIONS(3016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1415), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [56049] = 5, + [55998] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - STATE(1012), 1, - sym_preproc_argument_list, - ACTIONS(3726), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3724), 7, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3677), 1, + anon_sym_LBRACK, + STATE(1325), 1, + sym_gnu_asm_expression, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - sym_identifier, - [56076] = 3, + STATE(1331), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3675), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [56031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 7, + ACTIONS(2945), 7, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, @@ -108266,7 +107384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(2884), 8, + ACTIONS(2938), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108275,189 +107393,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [56099] = 11, + [56054] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(3730), 1, + ACTIONS(3718), 1, aux_sym_preproc_if_token2, - ACTIONS(3732), 1, + ACTIONS(3720), 1, aux_sym_preproc_else_token1, - ACTIONS(3734), 1, + ACTIONS(3722), 1, aux_sym_preproc_elif_token1, - STATE(1332), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1359), 1, + STATE(1324), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, + STATE(1334), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1451), 1, sym_enumerator, - ACTIONS(3736), 2, + ACTIONS(3724), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2012), 3, + STATE(1787), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(2015), 3, + STATE(1860), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [56138] = 11, + [56093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3395), 1, + anon_sym_LPAREN2, + STATE(991), 1, + sym_preproc_argument_list, + ACTIONS(3728), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3726), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - ACTIONS(3732), 1, + [56120] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3720), 1, aux_sym_preproc_else_token1, - ACTIONS(3734), 1, + ACTIONS(3722), 1, aux_sym_preproc_elif_token1, - ACTIONS(3738), 1, + ACTIONS(3730), 1, aux_sym_preproc_if_token2, - STATE(1342), 1, + STATE(1346), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1343), 1, + STATE(1347), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, + STATE(1451), 1, sym_enumerator, - ACTIONS(3736), 2, + ACTIONS(3724), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1835), 3, + STATE(1894), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1836), 3, + STATE(1895), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [56177] = 11, + [56159] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(3732), 1, + ACTIONS(3720), 1, aux_sym_preproc_else_token1, - ACTIONS(3734), 1, + ACTIONS(3722), 1, aux_sym_preproc_elif_token1, - ACTIONS(3740), 1, + ACTIONS(3732), 1, aux_sym_preproc_if_token2, - STATE(1340), 1, + STATE(1329), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1341), 1, + STATE(1330), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, + STATE(1451), 1, sym_enumerator, - ACTIONS(3736), 2, + ACTIONS(3724), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1926), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(1927), 3, + STATE(1767), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [56216] = 11, + STATE(1853), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [56198] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(3732), 1, + ACTIONS(3720), 1, aux_sym_preproc_else_token1, - ACTIONS(3734), 1, + ACTIONS(3722), 1, aux_sym_preproc_elif_token1, - ACTIONS(3742), 1, + ACTIONS(3734), 1, aux_sym_preproc_if_token2, - STATE(1352), 1, + STATE(1339), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1353), 1, + STATE(1340), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, + STATE(1451), 1, sym_enumerator, - ACTIONS(3736), 2, + ACTIONS(3724), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1896), 3, + STATE(1836), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1897), 3, + STATE(1838), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [56255] = 5, + [56237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - STATE(1285), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3746), 3, + ACTIONS(3736), 7, + anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, anon_sym___asm, - ACTIONS(3744), 9, + sym_identifier, + ACTIONS(3738), 8, 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_asm, - anon_sym___asm__, - [56282] = 8, + anon_sym_COLON, + [56260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, - sym_identifier, - ACTIONS(3685), 1, - anon_sym_LBRACK, - STATE(1351), 1, - sym_gnu_asm_expression, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - STATE(1333), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3683), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - [56315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 7, - anon_sym___attribute__, + STATE(1277), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3742), 3, anon_sym___attribute, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, anon_sym___asm, - sym_identifier, - ACTIONS(2935), 8, + ACTIONS(3740), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [56338] = 3, + anon_sym_asm, + anon_sym___asm__, + [56287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 7, + ACTIONS(2933), 7, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, @@ -108465,7 +107580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(3750), 8, + ACTIONS(2926), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108473,48 +107588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [56361] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3758), 1, - anon_sym___asm, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3752), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [56393] = 8, + anon_sym_COLON, + [56310] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3750), 1, anon_sym___asm, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3760), 7, + ACTIONS(3744), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108522,23 +107613,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56425] = 8, + [56342] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3766), 1, + ACTIONS(3754), 1, anon_sym___asm, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3764), 7, + ACTIONS(3752), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108546,23 +107637,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56457] = 8, + [56374] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(3758), 1, anon_sym___asm, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3768), 7, + ACTIONS(3756), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108570,59 +107661,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56489] = 12, + [56406] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3772), 1, - anon_sym_COMMA, - ACTIONS(3776), 1, - anon_sym___attribute, - ACTIONS(3778), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3780), 1, - anon_sym_COLON, - STATE(1403), 1, + ACTIONS(3762), 1, + anon_sym___asm, + STATE(1254), 1, sym_parameter_list, - STATE(1524), 1, - sym_bitfield_clause, - STATE(1526), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3774), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1362), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3784), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3782), 10, + ACTIONS(3760), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56549] = 3, + [56438] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3417), 1, + sym_identifier, + STATE(1300), 1, + sym_function_declarator, + STATE(1438), 1, + sym__declaration_declarator, + STATE(1487), 1, + sym__declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1900), 1, + sym_ms_based_modifier, + STATE(1363), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [56475] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3766), 1, + aux_sym_preproc_if_token1, + ACTIONS(3770), 1, + anon_sym_RBRACE, + ACTIONS(3768), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1718), 2, + sym_preproc_call, + sym_enumerator, + STATE(1823), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1308), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [56508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 3, + ACTIONS(3774), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3786), 10, + ACTIONS(3772), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108633,66 +107753,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56570] = 11, + [56529] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1407), 1, - sym__declarator, - STATE(1462), 1, + STATE(1450), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1487), 1, + sym__declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56607] = 11, + [56566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3778), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3776), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1455), 1, - sym__declaration_declarator, - STATE(1481), 1, - sym__declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [56644] = 3, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [56587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 3, + ACTIONS(3782), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3790), 10, + ACTIONS(3780), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108703,66 +107815,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56665] = 11, + [56608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3786), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3784), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1475), 1, - sym__declaration_declarator, - STATE(1481), 1, - sym__declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [56702] = 11, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [56629] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1411), 1, + STATE(1418), 1, sym__declarator, STATE(1448), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56739] = 3, + [56666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 3, + ACTIONS(3790), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3794), 10, + ACTIONS(3788), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108773,61 +107877,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56760] = 11, + [56687] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3792), 1, + anon_sym_COMMA, + ACTIONS(3796), 1, + anon_sym___attribute, + ACTIONS(3798), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_COLON, + STATE(1396), 1, + sym_parameter_list, + STATE(1514), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(1518), 1, + sym_bitfield_clause, + ACTIONS(3794), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1333), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56726] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1458), 1, + STATE(1484), 1, sym__declaration_declarator, - STATE(1481), 1, + STATE(1487), 1, sym__declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56797] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 2, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(3798), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3800), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3803), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3726), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [56824] = 3, + [56763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 3, + ACTIONS(3804), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3805), 10, + ACTIONS(3802), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108838,393 +107948,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56845] = 3, + [56784] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3809), 10, - 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_asm, - anon_sym___asm__, - [56866] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1428), 1, - sym__declarator, - STATE(1440), 1, + STATE(1448), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1487), 1, + sym__declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56903] = 9, + [56821] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3813), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3815), 1, + ACTIONS(3766), 1, aux_sym_preproc_if_token1, - ACTIONS(3819), 1, + ACTIONS(3806), 1, anon_sym_RBRACE, - ACTIONS(3817), 2, + ACTIONS(3768), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1696), 2, + STATE(1734), 2, sym_preproc_call, sym_enumerator, - STATE(1862), 2, + STATE(1889), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1334), 3, + STATE(1332), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [56936] = 11, + [56854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3810), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3808), 10, + 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_asm, + anon_sym___asm__, + [56875] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1448), 1, - sym__declaration_declarator, - STATE(1481), 1, + STATE(1419), 1, sym__declarator, - STATE(1512), 1, + STATE(1440), 1, + sym__declaration_declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56973] = 11, + [56912] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1425), 1, - sym__declarator, - STATE(1460), 1, + STATE(1434), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1487), 1, + sym__declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57010] = 11, + [56949] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1460), 1, - sym__declaration_declarator, - STATE(1481), 1, + STATE(1405), 1, sym__declarator, - STATE(1512), 1, + STATE(1444), 1, + sym__declaration_declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57047] = 3, + [56986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 3, - anon_sym___attribute, + ACTIONS(3726), 2, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3821), 10, + sym_identifier, + ACTIONS(3812), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + ACTIONS(3814), 2, anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3817), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3728), 4, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [57068] = 11, + [57013] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, STATE(1440), 1, sym__declaration_declarator, - STATE(1481), 1, + STATE(1487), 1, sym__declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57105] = 11, + [57050] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(1311), 1, + STATE(1300), 1, sym_function_declarator, - STATE(1462), 1, + STATE(1444), 1, sym__declaration_declarator, - STATE(1481), 1, + STATE(1487), 1, sym__declarator, - STATE(1512), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1363), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57142] = 9, + [57087] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3813), 1, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3417), 1, sym_identifier, - ACTIONS(3815), 1, - aux_sym_preproc_if_token1, - ACTIONS(3825), 1, - anon_sym_RBRACE, - ACTIONS(3817), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1768), 2, - sym_preproc_call, - sym_enumerator, - STATE(2004), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1317), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [57175] = 8, + STATE(1300), 1, + sym_function_declarator, + STATE(1401), 1, + sym__declarator, + STATE(1450), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1900), 1, + sym_ms_based_modifier, + STATE(1363), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [57124] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(3798), 1, anon_sym_LBRACK, - ACTIONS(3829), 1, + ACTIONS(3821), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1396), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1333), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3827), 5, + ACTIONS(3819), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57205] = 8, + [57154] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(3798), 1, anon_sym_LBRACK, - ACTIONS(3833), 1, + ACTIONS(3825), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1396), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1333), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3831), 5, + ACTIONS(3823), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57235] = 8, + [57184] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(3798), 1, anon_sym_LBRACK, - ACTIONS(3837), 1, + ACTIONS(3829), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1396), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1333), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3835), 5, + ACTIONS(3827), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57265] = 10, + [57214] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(3798), 1, anon_sym_LBRACK, - ACTIONS(3780), 1, + ACTIONS(3800), 1, anon_sym_COLON, - ACTIONS(3841), 1, + ACTIONS(3833), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1396), 1, sym_parameter_list, - STATE(1552), 1, + STATE(1535), 1, sym_bitfield_clause, - STATE(1362), 2, + STATE(1333), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3839), 3, + ACTIONS(3831), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [57299] = 10, + [57248] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(1296), 1, + STATE(1281), 1, sym_parameter_list, - ACTIONS(3843), 2, + ACTIONS(3835), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(1491), 2, + STATE(1478), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57333] = 8, + [57282] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(3798), 1, anon_sym_LBRACK, - ACTIONS(3847), 1, + ACTIONS(3839), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1396), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1333), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3845), 5, + ACTIONS(3837), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57363] = 6, + [57312] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3843), 1, + anon_sym___attribute, + ACTIONS(3845), 1, + anon_sym_LBRACK, + STATE(1397), 1, + sym_parameter_list, + STATE(1358), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3841), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [57341] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3847), 1, + aux_sym_preproc_if_token2, ACTIONS(3849), 1, + aux_sym_preproc_else_token1, + ACTIONS(3851), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3853), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1414), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1909), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [57370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3689), 1, + anon_sym_LBRACK, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1336), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3687), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [57395] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, + anon_sym___attribute, + STATE(1397), 1, + sym_parameter_list, + STATE(1358), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3855), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [57424] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3718), 1, + aux_sym_preproc_if_token2, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3859), 1, + aux_sym_preproc_else_token1, + ACTIONS(3861), 1, + aux_sym_preproc_elif_token1, + STATE(1334), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1802), 1, + sym_enumerator, + ACTIONS(3863), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1787), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [57455] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3865), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - ACTIONS(3851), 2, + ACTIONS(3867), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(1566), 2, + STATE(1553), 2, sym__string, sym_concatenated_string, ACTIONS(99), 5, @@ -109233,684 +108452,659 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [57388] = 9, + [57480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3853), 1, - aux_sym_preproc_if_token2, - ACTIONS(3855), 1, + ACTIONS(3859), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(3861), 1, aux_sym_preproc_elif_token1, - STATE(1415), 1, + ACTIONS(3869), 1, + aux_sym_preproc_if_token2, + STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(1802), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(3863), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1775), 3, + STATE(1821), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57419] = 5, + [57511] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3849), 1, + aux_sym_preproc_else_token1, + ACTIONS(3851), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3871), 1, + aux_sym_preproc_if_token2, + ACTIONS(3853), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1414), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1830), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [57540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3703), 3, + ACTIONS(3689), 3, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, - STATE(1270), 3, + STATE(1269), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3701), 4, + ACTIONS(3687), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [57442] = 8, + [57563] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(3873), 1, sym_identifier, - ACTIONS(3864), 1, + ACTIONS(3876), 1, aux_sym_preproc_if_token1, - ACTIONS(3870), 1, + ACTIONS(3882), 1, sym_preproc_directive, - ACTIONS(3873), 1, + ACTIONS(3885), 1, anon_sym_RBRACE, - ACTIONS(3867), 2, + ACTIONS(3879), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1905), 2, + STATE(1937), 2, sym_preproc_call, sym_enumerator, - STATE(1334), 3, + STATE(1332), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [57471] = 8, + [57592] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3877), 1, + ACTIONS(3889), 2, anon_sym___attribute, - ACTIONS(3879), 1, anon_sym_LBRACK, - STATE(1410), 1, - sym_parameter_list, - STATE(1366), 2, + STATE(1277), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3875), 4, + ACTIONS(3887), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [57500] = 8, + anon_sym_COLON, + [57615] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3881), 1, - aux_sym_preproc_if_token2, - ACTIONS(3883), 1, + ACTIONS(3859), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(3861), 1, aux_sym_preproc_elif_token1, - ACTIONS(3887), 2, + ACTIONS(3891), 1, + aux_sym_preproc_if_token2, + STATE(1409), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1802), 1, + sym_enumerator, + ACTIONS(3863), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1359), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2015), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [57529] = 8, + STATE(1905), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [57646] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3845), 1, anon_sym_LBRACK, - ACTIONS(3891), 1, + ACTIONS(3895), 1, anon_sym___attribute, - STATE(1410), 1, + STATE(1397), 1, sym_parameter_list, - STATE(1366), 2, + STATE(1358), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3889), 4, + ACTIONS(3893), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57558] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(1443), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [57587] = 5, + [57675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3709), 3, + ACTIONS(3683), 3, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, - STATE(1270), 3, + STATE(1269), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3707), 4, + ACTIONS(3681), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [57610] = 9, + [57698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3855), 1, - aux_sym_preproc_else_token1, - ACTIONS(3857), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3893), 1, - aux_sym_preproc_if_token2, - STATE(1415), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3105), 1, + anon_sym_STAR, + STATE(1433), 1, + sym__declarator, STATE(1900), 1, - sym_enumerator, - ACTIONS(3859), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1870), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [57641] = 8, + sym_ms_based_modifier, + STATE(1300), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [57727] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(3883), 1, - aux_sym_preproc_else_token1, - ACTIONS(3885), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3895), 1, - aux_sym_preproc_if_token2, - ACTIONS(3887), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1427), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1954), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [57670] = 9, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_LBRACK, + ACTIONS(3897), 1, + anon_sym_COMMA, + ACTIONS(3901), 1, + anon_sym___attribute, + STATE(1397), 1, + sym_parameter_list, + STATE(1500), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(3899), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1358), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57760] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(3859), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(3861), 1, aux_sym_preproc_elif_token1, - ACTIONS(3897), 1, + ACTIONS(3903), 1, aux_sym_preproc_if_token2, - STATE(1415), 1, + STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(1802), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(3863), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1776), 3, + STATE(1949), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57701] = 8, + [57791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(3849), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(3851), 1, aux_sym_preproc_elif_token1, - ACTIONS(3899), 1, + ACTIONS(3905), 1, aux_sym_preproc_if_token2, - ACTIONS(3887), 2, + ACTIONS(3853), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1427), 2, + STATE(1414), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1986), 3, + STATE(1828), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [57730] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3738), 1, - aux_sym_preproc_if_token2, - ACTIONS(3813), 1, - sym_identifier, - ACTIONS(3855), 1, - aux_sym_preproc_else_token1, - ACTIONS(3857), 1, - aux_sym_preproc_elif_token1, - STATE(1342), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - ACTIONS(3859), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1835), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [57761] = 8, + [57820] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3845), 1, anon_sym_LBRACK, - ACTIONS(3903), 1, + ACTIONS(3909), 1, anon_sym___attribute, - STATE(1410), 1, + STATE(1397), 1, sym_parameter_list, - STATE(1366), 2, + STATE(1358), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3901), 4, + ACTIONS(3907), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57790] = 8, + [57849] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(3883), 1, - aux_sym_preproc_else_token1, - ACTIONS(3885), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3905), 1, + ACTIONS(3734), 1, aux_sym_preproc_if_token2, - ACTIONS(3887), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1343), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1836), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [57819] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(3859), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(3861), 1, aux_sym_preproc_elif_token1, - ACTIONS(3907), 1, - aux_sym_preproc_if_token2, - STATE(1352), 1, + STATE(1339), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(1802), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(3863), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1896), 3, + STATE(1836), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57850] = 9, + [57880] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(3849), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(3851), 1, aux_sym_preproc_elif_token1, - ACTIONS(3909), 1, + ACTIONS(3911), 1, aux_sym_preproc_if_token2, - STATE(1340), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(3853), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1926), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [57881] = 8, + STATE(1340), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1838), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [57909] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1406), 1, + STATE(1416), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [57910] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(3915), 1, - anon_sym___attribute, - STATE(1410), 1, - sym_parameter_list, - STATE(1518), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3913), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57943] = 6, + [57938] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3703), 1, - anon_sym_LBRACK, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1339), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3701), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [57968] = 9, + ACTIONS(3859), 1, + aux_sym_preproc_else_token1, + ACTIONS(3861), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3913), 1, + aux_sym_preproc_if_token2, + STATE(1329), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1802), 1, + sym_enumerator, + ACTIONS(3863), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1853), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [57969] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(3859), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(3861), 1, aux_sym_preproc_elif_token1, - ACTIONS(3917), 1, + ACTIONS(3915), 1, aux_sym_preproc_if_token2, - STATE(1415), 1, + STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(1802), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(3863), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1899), 3, + STATE(1799), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57999] = 8, + [58000] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(3849), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(3851), 1, aux_sym_preproc_elif_token1, - ACTIONS(3919), 1, + ACTIONS(3917), 1, aux_sym_preproc_if_token2, - ACTIONS(3887), 2, + ACTIONS(3853), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1427), 2, + STATE(1414), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1934), 3, + STATE(1908), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [58028] = 8, + [58029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1422), 1, + STATE(1399), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [58057] = 8, + [58058] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(1433), 1, + STATE(1412), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [58086] = 8, + [58087] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(3113), 1, - anon_sym_LPAREN2, - ACTIONS(3115), 1, - anon_sym_STAR, - STATE(1439), 1, - sym__field_declarator, - STATE(1953), 1, - sym_ms_based_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [58115] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym___attribute, - STATE(1410), 1, - sym_parameter_list, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3921), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [58144] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, anon_sym_STAR, - STATE(1434), 1, + STATE(1427), 1, sym__declarator, - STATE(1967), 1, + STATE(1900), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1300), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [58173] = 8, + [58116] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(3859), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(3861), 1, aux_sym_preproc_elif_token1, - ACTIONS(3925), 1, - aux_sym_preproc_if_token2, - ACTIONS(3887), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1427), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1903), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [58202] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, + ACTIONS(3919), 1, aux_sym_preproc_if_token2, - ACTIONS(3813), 1, - sym_identifier, - ACTIONS(3855), 1, - aux_sym_preproc_else_token1, - ACTIONS(3857), 1, - aux_sym_preproc_elif_token1, - STATE(1332), 1, + STATE(1346), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(1802), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(3863), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2012), 3, + STATE(1894), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [58233] = 8, + [58147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3101), 1, + anon_sym_STAR, + STATE(1441), 1, + sym__field_declarator, + STATE(1990), 1, + sym_ms_based_modifier, + STATE(1382), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [58176] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym___based, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3099), 1, + anon_sym_LPAREN2, + ACTIONS(3101), 1, anon_sym_STAR, - STATE(1328), 1, + STATE(1320), 1, sym__field_declarator, - STATE(1953), 1, + STATE(1990), 1, sym_ms_based_modifier, - STATE(1395), 5, + STATE(1382), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [58262] = 5, + [58205] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3849), 1, + aux_sym_preproc_else_token1, + ACTIONS(3851), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3921), 1, + aux_sym_preproc_if_token2, + ACTIONS(3853), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1324), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1860), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [58234] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3762), 1, + anon_sym___attribute, + STATE(1281), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3760), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [58262] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3923), 1, + anon_sym_LPAREN2, + ACTIONS(3925), 1, + anon_sym_EQ, + STATE(339), 1, + sym_compound_statement, + STATE(940), 1, + sym__old_style_parameter_list, + STATE(1260), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [58294] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym___attribute, + STATE(1397), 1, + sym_parameter_list, + STATE(1358), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3927), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [58322] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3929), 2, + ACTIONS(3933), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(1285), 2, + STATE(1277), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3927), 6, + ACTIONS(3931), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [58285] = 8, + [58344] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3933), 1, + ACTIONS(3754), 1, anon_sym___attribute, - STATE(1410), 1, + STATE(1281), 1, sym_parameter_list, - STATE(1366), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3931), 3, + ACTIONS(3752), 3, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym___attribute__, - [58313] = 6, + [58372] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3937), 1, anon_sym_LBRACK, - STATE(1532), 1, + STATE(1541), 1, sym_gnu_asm_output_operand, - STATE(1963), 1, + STATE(1972), 1, sym_string_literal, ACTIONS(3935), 2, anon_sym_RPAREN, @@ -109921,153 +109115,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58337] = 10, + [58396] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(378), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(3923), 1, anon_sym_LPAREN2, - ACTIONS(3941), 1, + ACTIONS(3925), 1, anon_sym_EQ, - STATE(320), 1, + STATE(261), 1, sym_compound_statement, - STATE(945), 1, + STATE(940), 1, sym__old_style_parameter_list, - STATE(1268), 1, + STATE(1260), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58369] = 5, + [58428] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3945), 2, - anon_sym___attribute, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(1285), 2, + ACTIONS(3923), 1, + anon_sym_LPAREN2, + ACTIONS(3925), 1, + anon_sym_EQ, + STATE(124), 1, + sym_compound_statement, + STATE(940), 1, + sym__old_style_parameter_list, + STATE(1260), 1, + sym_parameter_list, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3943), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [58391] = 6, + [58460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 1, - anon_sym___attribute__, - ACTIONS(3952), 1, - anon_sym___attribute, - ACTIONS(3955), 1, + ACTIONS(3782), 1, + anon_sym_LBRACK, + ACTIONS(3941), 1, anon_sym___asm, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3947), 5, + ACTIONS(3780), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3939), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [58415] = 8, + [58482] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(430), 1, + anon_sym_LBRACE, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3770), 1, - anon_sym___attribute, - STATE(1296), 1, + ACTIONS(3923), 1, + anon_sym_LPAREN2, + ACTIONS(3925), 1, + anon_sym_EQ, + STATE(288), 1, + sym_compound_statement, + STATE(940), 1, + sym__old_style_parameter_list, + STATE(1260), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3768), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [58443] = 8, + [58514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3758), 1, + ACTIONS(3945), 1, + anon_sym___attribute__, + ACTIONS(3948), 1, anon_sym___attribute, - STATE(1296), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3752), 3, + ACTIONS(3951), 1, + anon_sym___asm, + STATE(1365), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3943), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - [58471] = 8, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [58538] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3766), 1, + ACTIONS(3750), 1, anon_sym___attribute, - STATE(1296), 1, + STATE(1281), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3764), 3, + ACTIONS(3744), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [58499] = 8, + [58566] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(3758), 1, anon_sym___attribute, - STATE(1296), 1, + STATE(1281), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3760), 3, + ACTIONS(3756), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [58527] = 6, + [58594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 1, + ACTIONS(3955), 1, anon_sym_LBRACK, - STATE(1551), 1, + STATE(1539), 1, sym_gnu_asm_input_operand, - STATE(1975), 1, + STATE(1846), 1, sym_string_literal, - ACTIONS(3957), 2, + ACTIONS(3953), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(99), 5, @@ -110076,97 +109274,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58551] = 10, + [58618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(3959), 1, + anon_sym___asm, + STATE(1365), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3957), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [58641] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(3691), 1, + anon_sym___asm, + STATE(1365), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3685), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [58664] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(3923), 1, anon_sym_LPAREN2, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(292), 1, + STATE(295), 1, sym_compound_statement, - STATE(945), 1, + STATE(940), 1, sym__old_style_parameter_list, - STATE(1268), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58583] = 10, + [58693] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3941), 1, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3925), 1, anon_sym_EQ, - STATE(263), 1, + STATE(288), 1, sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1268), 1, + STATE(1260), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58615] = 5, + [58722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3961), 1, + sym_identifier, + ACTIONS(3965), 1, + sym_system_lib_string, + STATE(2005), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3963), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [58743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym___asm, - ACTIONS(3794), 4, + ACTIONS(3967), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [58760] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1940), 1, anon_sym_LPAREN2, + ACTIONS(1942), 1, + anon_sym_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + STATE(1551), 1, + sym__abstract_declarator, + STATE(1443), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [58785] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(378), 1, anon_sym_LBRACE, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3925), 1, anon_sym_EQ, - ACTIONS(3961), 4, + STATE(261), 1, + sym_compound_statement, + STATE(1260), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [58814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3973), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(3971), 7, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [58637] = 10, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [58831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3977), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(3975), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [58848] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3923), 1, + anon_sym_LPAREN2, + STATE(132), 1, + sym_compound_statement, + STATE(940), 1, + sym__old_style_parameter_list, + STATE(1254), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [58877] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3941), 1, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3925), 1, anon_sym_EQ, - STATE(146), 1, + STATE(124), 1, sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1268), 1, + STATE(1260), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58669] = 5, + [58906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(3865), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1608), 2, + STATE(1600), 2, sym__string, sym_concatenated_string, ACTIONS(99), 5, @@ -110175,86 +109500,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58690] = 9, + [58927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3981), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(263), 1, - sym_compound_statement, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [58719] = 5, + ACTIONS(3979), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [58944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3965), 1, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3969), 1, + ACTIONS(3985), 1, sym_system_lib_string, - STATE(1861), 2, + STATE(1884), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3967), 5, + ACTIONS(3963), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58740] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3973), 1, - anon_sym___asm, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3971), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [58763] = 9, + [58965] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, ACTIONS(378), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(3923), 1, anon_sym_LPAREN2, - STATE(276), 1, + STATE(273), 1, sym_compound_statement, - STATE(945), 1, + STATE(940), 1, sym__old_style_parameter_list, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58792] = 3, + [58994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3977), 2, + ACTIONS(3989), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3975), 7, + ACTIONS(3987), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110262,13 +109564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [58809] = 3, + [59011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 2, + ACTIONS(3993), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3979), 7, + ACTIONS(3991), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110276,44 +109578,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [58826] = 3, + [59028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(3983), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [58843] = 5, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3925), 1, + anon_sym_EQ, + STATE(339), 1, + sym_compound_statement, + STATE(1260), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [59057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(3995), 1, sym_identifier, - STATE(673), 1, + ACTIONS(3997), 1, + sym_system_lib_string, + STATE(1774), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1605), 2, - sym__string, - sym_concatenated_string, - ACTIONS(99), 5, + ACTIONS(3963), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58864] = 5, + [59078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(3865), 1, sym_identifier, - STATE(673), 1, + STATE(663), 1, sym_string_literal, - STATE(1598), 2, + STATE(1566), 2, sym__string, sym_concatenated_string, ACTIONS(99), 5, @@ -110322,29 +109630,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58885] = 5, + [59099] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - sym_identifier, - ACTIONS(3989), 1, - sym_system_lib_string, - STATE(1989), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3967), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58906] = 3, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(3923), 1, + anon_sym_LPAREN2, + STATE(326), 1, + sym_compound_statement, + STATE(940), 1, + sym__old_style_parameter_list, + STATE(1254), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [59128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 2, + ACTIONS(4001), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3991), 7, + ACTIONS(3999), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110352,145 +109664,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [58923] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - STATE(1465), 1, - sym_parameter_list, - ACTIONS(3843), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1492), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58950] = 5, + [59145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(4003), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(4005), 1, sym_system_lib_string, - STATE(1879), 2, + STATE(1816), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3967), 5, + ACTIONS(3963), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58971] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1948), 1, - anon_sym_LPAREN2, - ACTIONS(1950), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(1442), 1, - sym_parameter_list, - STATE(1547), 1, - sym__abstract_declarator, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [58996] = 3, + [59166] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4003), 2, + ACTIONS(35), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4001), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(3504), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [59013] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3939), 1, - anon_sym_LPAREN2, - STATE(344), 1, - sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59042] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(320), 1, - sym_compound_statement, - STATE(1268), 1, + STATE(1432), 1, sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4007), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4005), 7, + ACTIONS(3835), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [59088] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3705), 1, - anon_sym___asm, - STATE(1367), 2, + STATE(1481), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3699), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [59111] = 3, + [59193] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4011), 2, @@ -110504,29 +109713,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59128] = 5, + [59210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, + ACTIONS(3865), 1, sym_identifier, - ACTIONS(4015), 1, - sym_system_lib_string, - STATE(1817), 2, - sym_preproc_call_expression, + STATE(663), 1, sym_string_literal, - ACTIONS(3967), 5, + STATE(1648), 2, + sym__string, + sym_concatenated_string, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59149] = 3, + [59231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 2, + ACTIONS(4015), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4017), 7, + ACTIONS(4013), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110534,101 +109743,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59166] = 9, + [59248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(4019), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4017), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(130), 1, - sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59195] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, - anon_sym_LBRACE, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3939), 1, - anon_sym_LPAREN2, - STATE(300), 1, - sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59224] = 9, + [59264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(292), 1, - sym_compound_statement, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4023), 2, + ACTIONS(4023), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4021), 7, + STATE(1432), 1, + sym_parameter_list, + ACTIONS(4021), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59270] = 9, + [59286] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(146), 1, + STATE(139), 1, sym_compound_statement, - STATE(1268), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59299] = 3, + [59312] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4027), 2, @@ -110641,74 +109803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59315] = 8, + [59328] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(283), 1, + STATE(324), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1260), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59341] = 8, + [59354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4031), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(342), 1, - sym_compound_statement, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59367] = 8, + ACTIONS(4029), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [59370] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(276), 1, + STATE(326), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4031), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4029), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [59409] = 3, + [59396] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4035), 2, @@ -110721,981 +109865,915 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59425] = 8, + [59412] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(378), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(120), 1, + STATE(271), 1, sym_compound_statement, - STATE(1268), 1, + STATE(1260), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59451] = 8, + [59438] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(344), 1, + STATE(132), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59477] = 8, + [59464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4037), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [59480] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(4037), 1, + ACTIONS(4041), 1, sym_identifier, - STATE(735), 1, + STATE(733), 1, sym_field_declaration_list, - STATE(1511), 1, + STATE(1516), 1, sym_attribute_specifier, - STATE(1611), 1, + STATE(1653), 1, sym_ms_declspec_modifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - [59503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4041), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4039), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [59519] = 6, + [59506] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4043), 1, sym_identifier, ACTIONS(4048), 1, aux_sym_preproc_elif_token1, - STATE(1415), 1, + STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(1802), 1, sym_enumerator, ACTIONS(4046), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [59541] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - STATE(130), 1, - sym_compound_statement, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59567] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4052), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4050), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [59585] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym___attribute, - STATE(1465), 1, - sym_parameter_list, - ACTIONS(4056), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_COLON, - [59607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, - anon_sym_LBRACK, - STATE(1677), 1, - sym_gnu_asm_output_operand, - STATE(1963), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59627] = 3, + [59528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 2, + ACTIONS(4052), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4060), 6, + ACTIONS(4050), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59643] = 3, + [59544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 2, + ACTIONS(4056), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4064), 6, + ACTIONS(4054), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59659] = 8, + [59560] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(323), 1, + STATE(300), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59685] = 3, + [59586] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4068), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - [59701] = 3, + ACTIONS(430), 1, + anon_sym_LBRACE, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3748), 1, + anon_sym_LBRACK, + STATE(295), 1, + sym_compound_statement, + STATE(1254), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [59612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4058), 1, + sym_identifier, + ACTIONS(4063), 1, + aux_sym_preproc_elif_token1, + STATE(1414), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4061), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [59632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 2, + ACTIONS(4067), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4072), 6, + ACTIONS(4065), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59717] = 8, + [59648] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, + ACTIONS(378), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(298), 1, + STATE(279), 1, sym_compound_statement, - STATE(1268), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59743] = 3, + [59674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 2, + ACTIONS(4071), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4076), 6, + ACTIONS(4069), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59759] = 5, + [59690] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4085), 1, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3748), 1, + anon_sym_LBRACK, + STATE(129), 1, + sym_compound_statement, + STATE(1260), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [59716] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(430), 1, + anon_sym_LBRACE, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3748), 1, + anon_sym_LBRACK, + STATE(293), 1, + sym_compound_statement, + STATE(1260), 1, + sym_parameter_list, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [59742] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, aux_sym_preproc_elif_token1, - STATE(1427), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4083), 4, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4073), 6, + anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [59779] = 8, + sym_identifier, + [59760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 1, + anon_sym_LBRACK, + STATE(1671), 1, + sym_gnu_asm_output_operand, + STATE(1972), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [59780] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, ACTIONS(378), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(274), 1, + STATE(273), 1, sym_compound_statement, - STATE(1268), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59805] = 6, + [59806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4089), 1, + ACTIONS(4081), 1, anon_sym___attribute, - STATE(1465), 1, + STATE(1432), 1, sym_parameter_list, - ACTIONS(4087), 4, + ACTIONS(4079), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_COLON, - [59827] = 6, + [59828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4093), 1, + ACTIONS(4085), 1, anon_sym___attribute, - STATE(1465), 1, + STATE(1432), 1, sym_parameter_list, - ACTIONS(4091), 4, + ACTIONS(4083), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_COLON, - [59849] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3959), 1, - anon_sym_LBRACK, - STATE(1599), 1, - sym_gnu_asm_input_operand, - STATE(1975), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4095), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [59885] = 8, + [59850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3955), 1, anon_sym_LBRACK, - STATE(123), 1, - sym_compound_statement, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59911] = 8, + STATE(1612), 1, + sym_gnu_asm_input_operand, + STATE(1846), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [59870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4089), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(306), 1, - sym_compound_statement, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59937] = 8, + ACTIONS(4087), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [59886] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(300), 1, + STATE(334), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59963] = 3, + [59912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(4093), 1, anon_sym___attribute, - ACTIONS(4099), 6, + ACTIONS(4091), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [59978] = 3, + [59927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(4097), 1, anon_sym___attribute, - ACTIONS(4103), 6, + ACTIONS(4095), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [59993] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(4107), 1, - anon_sym_RPAREN, - STATE(1410), 1, - sym_parameter_list, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60016] = 7, + [59942] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(3845), 1, anon_sym_LBRACK, - ACTIONS(4109), 1, + ACTIONS(4099), 1, anon_sym_RPAREN, - STATE(1403), 1, + STATE(1397), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1358), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60039] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_SEMI, - STATE(1571), 1, - sym_gnu_asm_expression, - STATE(1613), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60062] = 4, + [59965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(4101), 1, anon_sym_LPAREN2, - STATE(1450), 2, + STATE(1431), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4119), 4, + ACTIONS(4103), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [60079] = 3, + [59982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 1, + ACTIONS(4108), 1, anon_sym___attribute, - ACTIONS(4121), 6, + ACTIONS(4106), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60094] = 7, + [59997] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(4125), 1, + ACTIONS(4110), 1, anon_sym_RPAREN, - STATE(1263), 1, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60117] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACK, - ACTIONS(4130), 1, - anon_sym_EQ, - ACTIONS(4132), 1, - anon_sym_DOT, - STATE(1444), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [60136] = 7, + [60020] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4135), 1, + ACTIONS(4114), 1, anon_sym_SEMI, - STATE(1592), 1, + STATE(1614), 1, sym_gnu_asm_expression, - STATE(1593), 1, + STATE(1615), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60159] = 7, + [60043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4120), 1, + anon_sym___attribute, + ACTIONS(4118), 6, anon_sym_COMMA, - ACTIONS(4137), 1, - anon_sym_SEMI, - STATE(1659), 1, - sym_gnu_asm_expression, - STATE(1660), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60182] = 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [60058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4124), 1, anon_sym___attribute, - ACTIONS(4139), 6, + ACTIONS(4122), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60197] = 7, + [60073] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_SEMI, - STATE(1600), 1, + STATE(1624), 1, sym_gnu_asm_expression, - STATE(1601), 1, + STATE(1625), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym___attribute, - ACTIONS(4145), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60235] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(1450), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4151), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [60252] = 3, + [60096] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym___attribute, - ACTIONS(4154), 6, + ACTIONS(93), 1, + anon_sym___asm, + ACTIONS(4112), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60267] = 3, + ACTIONS(4128), 1, + anon_sym_SEMI, + STATE(1627), 1, + sym_gnu_asm_expression, + STATE(1628), 1, + aux_sym_declaration_repeat1, + ACTIONS(4116), 2, + anon_sym_asm, + anon_sym___asm__, + [60119] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 1, - anon_sym___attribute, - ACTIONS(4158), 6, + ACTIONS(93), 1, + anon_sym___asm, + ACTIONS(4112), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60282] = 7, + ACTIONS(4130), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_gnu_asm_expression, + STATE(1634), 1, + aux_sym_declaration_repeat1, + ACTIONS(4116), 2, + anon_sym_asm, + anon_sym___asm__, + [60142] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4162), 1, + ACTIONS(4132), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1636), 1, sym_gnu_asm_expression, - STATE(1624), 1, + STATE(1637), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60305] = 7, + [60165] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3798), 1, anon_sym_LBRACK, - ACTIONS(4164), 1, + ACTIONS(4134), 1, anon_sym_RPAREN, - STATE(1263), 1, + STATE(1396), 1, + sym_parameter_list, + STATE(1333), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [60188] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3748), 1, + anon_sym_LBRACK, + ACTIONS(4136), 1, + anon_sym_RPAREN, + STATE(1254), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60328] = 7, + [60211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4140), 1, + anon_sym___attribute, + ACTIONS(4138), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [60226] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4166), 1, + ACTIONS(4142), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1650), 1, sym_gnu_asm_expression, - STATE(1630), 1, + STATE(1651), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60351] = 5, + [60249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(4168), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4146), 1, anon_sym_DOT, - STATE(1444), 4, + STATE(1461), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [60370] = 7, + [60268] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4172), 1, - anon_sym_SEMI, - STATE(1637), 1, - sym_gnu_asm_expression, - STATE(1638), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60393] = 7, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_LBRACK, + ACTIONS(4148), 1, + anon_sym_RPAREN, + STATE(1397), 1, + sym_parameter_list, + STATE(1358), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [60291] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4174), 1, + ACTIONS(4150), 1, anon_sym_SEMI, - STATE(1640), 1, + STATE(1581), 1, sym_gnu_asm_expression, - STATE(1641), 1, + STATE(1582), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60416] = 7, + [60314] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4176), 1, + ACTIONS(4152), 1, anon_sym_SEMI, - STATE(1645), 1, + STATE(1589), 1, sym_gnu_asm_expression, - STATE(1646), 1, + STATE(1590), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60439] = 7, + [60337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4156), 1, + anon_sym___attribute, + ACTIONS(4154), 6, anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_SEMI, - STATE(1648), 1, - sym_gnu_asm_expression, - STATE(1649), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60462] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3879), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4180), 1, - anon_sym_RPAREN, - STATE(1410), 1, - sym_parameter_list, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60485] = 7, + anon_sym_COLON, + [60352] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4182), 1, + ACTIONS(4158), 1, anon_sym_SEMI, - STATE(1618), 1, + STATE(1662), 1, sym_gnu_asm_expression, - STATE(1627), 1, + STATE(1663), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60508] = 4, + [60375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4162), 1, anon_sym_COMMA, - ACTIONS(4188), 1, + ACTIONS(4164), 1, aux_sym_preproc_elif_token1, - ACTIONS(4184), 5, + ACTIONS(4160), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [60525] = 3, + [60392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 1, + ACTIONS(4168), 1, anon_sym___attribute, - ACTIONS(4190), 6, + ACTIONS(4166), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60540] = 3, + [60407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 1, + ACTIONS(4172), 1, anon_sym___attribute, - ACTIONS(4194), 6, + ACTIONS(4170), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60555] = 4, + [60422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4174), 1, anon_sym_LPAREN2, - STATE(1441), 2, + STATE(1431), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4119), 4, + ACTIONS(4176), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [60572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4202), 1, - anon_sym___attribute, - ACTIONS(4200), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60587] = 7, + [60439] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4204), 1, + ACTIONS(4178), 1, anon_sym_SEMI, - STATE(1621), 1, + STATE(1613), 1, sym_gnu_asm_expression, - STATE(1632), 1, + STATE(1617), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - [60610] = 7, + [60462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4180), 1, + anon_sym_LPAREN2, + STATE(1454), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4176), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [60479] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(3925), 1, anon_sym_EQ, - STATE(1268), 1, + STATE(1260), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1289), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60633] = 7, + [60502] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym___asm, + ACTIONS(4112), 1, + anon_sym_COMMA, + ACTIONS(4182), 1, + anon_sym_SEMI, + STATE(1661), 1, + sym_gnu_asm_expression, + STATE(1664), 1, + aux_sym_declaration_repeat1, + ACTIONS(4116), 2, + anon_sym_asm, + anon_sym___asm__, + [60525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4186), 1, + anon_sym___attribute, + ACTIONS(4184), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [60540] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(3798), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(4188), 1, anon_sym_RPAREN, - STATE(1403), 1, + STATE(1396), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1333), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60656] = 3, + [60563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, + ACTIONS(4190), 1, + anon_sym_LBRACK, + ACTIONS(4193), 1, + anon_sym_EQ, + ACTIONS(4195), 1, + anon_sym_DOT, + STATE(1461), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [60582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 1, anon_sym___attribute, - ACTIONS(4208), 6, + ACTIONS(4198), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60671] = 3, + [60597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4204), 1, anon_sym___attribute, - ACTIONS(4212), 6, + ACTIONS(4202), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60686] = 3, + [60612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4208), 1, anon_sym___attribute, - ACTIONS(4216), 6, + ACTIONS(4206), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60701] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - STATE(1465), 1, - sym_parameter_list, - ACTIONS(4220), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60719] = 5, + [60627] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - STATE(1770), 1, + ACTIONS(4112), 1, + anon_sym_COMMA, + ACTIONS(4210), 1, + anon_sym_SEMI, + STATE(1608), 1, sym_gnu_asm_expression, - ACTIONS(4115), 2, + STATE(1609), 1, + aux_sym_declaration_repeat1, + ACTIONS(4116), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(4222), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [60737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4224), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4226), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60751] = 3, + [60650] = 3, ACTIONS(3), 1, sym_comment, - STATE(1952), 1, + STATE(2012), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -111703,115 +110781,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [60765] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4228), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [60783] = 3, + [60664] = 3, ACTIONS(3), 1, sym_comment, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [60797] = 3, + ACTIONS(4212), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4214), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [60678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(4216), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4232), 4, + ACTIONS(4218), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60811] = 6, + [60692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - STATE(1268), 1, + STATE(1432), 1, sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60831] = 3, + ACTIONS(4220), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [60710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(4007), 1, + anon_sym_LBRACK, + STATE(1432), 1, + sym_parameter_list, + ACTIONS(4222), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [60728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 2, + ACTIONS(4224), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4236), 4, + ACTIONS(4226), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60845] = 3, + [60742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(4228), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4240), 4, + ACTIONS(4230), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60859] = 5, + [60756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - STATE(1465), 1, - sym_parameter_list, - ACTIONS(4242), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 2, + ACTIONS(4232), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4246), 4, + ACTIONS(4234), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60891] = 5, + [60770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - STATE(1465), 1, + STATE(1432), 1, sym_parameter_list, - ACTIONS(4248), 3, + ACTIONS(4236), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60909] = 3, + [60788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4240), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [60802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4048), 1, @@ -111822,117 +110897,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [60923] = 3, + [60816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4252), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60937] = 3, + ACTIONS(93), 1, + anon_sym___asm, + STATE(1744), 1, + sym_gnu_asm_expression, + ACTIONS(4116), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4242), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [60834] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4244), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1365), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [60852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 2, + ACTIONS(4238), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4256), 4, + ACTIONS(4240), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60951] = 3, + [60866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4246), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4260), 4, + ACTIONS(4248), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60965] = 5, + [60880] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4262), 2, + ACTIONS(4244), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1367), 2, + STATE(1365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [60983] = 5, + [60898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4262), 2, + STATE(621), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [60912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(4007), 1, + anon_sym_LBRACK, + STATE(1432), 1, + sym_parameter_list, + ACTIONS(4250), 3, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61001] = 3, + anon_sym_COLON, + [60930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym___asm, + STATE(1701), 1, + sym_gnu_asm_expression, + ACTIONS(4116), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4252), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [60948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(3885), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4260), 4, + ACTIONS(4254), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [61015] = 5, + [60962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - STATE(1772), 1, - sym_gnu_asm_expression, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4264), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [61033] = 5, + ACTIONS(4256), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4258), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [60976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(3748), 1, anon_sym_LBRACK, - STATE(1465), 1, + STATE(1260), 1, sym_parameter_list, - ACTIONS(4266), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [61051] = 3, + STATE(1289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [60996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 2, + ACTIONS(4232), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4226), 4, + ACTIONS(4234), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [61065] = 3, + [61010] = 5, ACTIONS(3), 1, sym_comment, - STATE(1991), 1, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4260), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1365), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [61028] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1786), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -111940,5230 +111066,5219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [61079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3873), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4268), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [61093] = 5, + [61042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(4262), 1, + anon_sym_COMMA, + ACTIONS(4267), 1, anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4270), 1, + STATE(1491), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4265), 2, anon_sym_SEMI, - STATE(1525), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61110] = 5, + anon_sym___attribute__, + [61059] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4272), 1, + ACTIONS(4269), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61127] = 5, + [61076] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4274), 1, + ACTIONS(4271), 1, anon_sym_SEMI, - STATE(1514), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61144] = 5, + [61093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(4273), 1, + aux_sym_preproc_if_token2, + STATE(1451), 1, + sym_enumerator, + STATE(1523), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1560), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + [61112] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4276), 1, + ACTIONS(4275), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61161] = 5, + [61129] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4278), 1, + ACTIONS(4277), 1, anon_sym_SEMI, - STATE(1520), 2, + STATE(1497), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61178] = 5, + [61146] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4280), 1, + ACTIONS(4279), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61195] = 5, + [61163] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4282), 1, + ACTIONS(4281), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61212] = 5, + [61180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4283), 5, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [61191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3897), 1, anon_sym_COMMA, - ACTIONS(4286), 1, + ACTIONS(4287), 1, anon_sym___attribute, - STATE(1507), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4284), 2, + STATE(1491), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4285), 2, anon_sym_SEMI, anon_sym___attribute__, - [61229] = 5, + [61208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - anon_sym_COMMA, - ACTIONS(4293), 1, + ACTIONS(35), 1, anon_sym___attribute, - STATE(1507), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4291), 2, - anon_sym_SEMI, + ACTIONS(3504), 1, anon_sym___attribute__, - [61246] = 5, + ACTIONS(4289), 1, + anon_sym_SEMI, + STATE(1365), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [61225] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4295), 1, + ACTIONS(4291), 1, anon_sym_SEMI, - STATE(1505), 2, + STATE(1495), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61263] = 5, + [61242] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4297), 1, + ACTIONS(4293), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1498), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61280] = 5, + [61259] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + anon_sym_COMMA, + ACTIONS(4297), 1, + anon_sym___attribute, + STATE(1509), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4295), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [61276] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, ACTIONS(4299), 1, anon_sym_SEMI, - STATE(1500), 2, + STATE(1365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61297] = 6, + [61293] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, ACTIONS(4301), 1, sym_identifier, - STATE(737), 1, + STATE(724), 1, sym_field_declaration_list, - STATE(1636), 1, + STATE(1646), 1, sym_ms_declspec_modifier, - [61316] = 3, + [61312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, - anon_sym___asm, - ACTIONS(4303), 4, - anon_sym_COMMA, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4303), 1, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, + STATE(1365), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, [61329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4305), 1, + anon_sym_SEMI, + STATE(1505), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [61346] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4307), 1, anon_sym_COMMA, ACTIONS(4312), 1, anon_sym___attribute, - STATE(1513), 1, - aux_sym__type_definition_declarators_repeat1, + STATE(1509), 1, + aux_sym__field_declaration_declarator_repeat1, ACTIONS(4310), 2, anon_sym_SEMI, anon_sym___attribute__, - [61346] = 5, + [61363] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, ACTIONS(4314), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1517), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61363] = 6, + [61380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4316), 1, - sym_identifier, - STATE(732), 1, - sym_field_declaration_list, - STATE(1610), 1, - sym_ms_declspec_modifier, - [61382] = 5, + ACTIONS(4318), 1, + anon_sym___asm, + ACTIONS(4316), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [61393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - ACTIONS(4320), 1, + ACTIONS(4322), 1, anon_sym_COLON_COLON, - STATE(1727), 1, + STATE(1699), 1, sym_argument_list, - ACTIONS(4318), 2, + ACTIONS(4320), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [61399] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(4322), 1, - aux_sym_preproc_if_token2, - STATE(1463), 1, - sym_enumerator, - STATE(1529), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1535), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(4326), 1, - anon_sym___attribute, - STATE(1513), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4324), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [61435] = 5, + [61410] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4328), 1, + ACTIONS(4324), 1, anon_sym_SEMI, - STATE(1504), 2, + STATE(1492), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61452] = 5, + [61427] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + anon_sym_COMMA, + ACTIONS(4328), 1, + anon_sym___attribute, + STATE(1509), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4326), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [61444] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, ACTIONS(4330), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1507), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61469] = 2, + [61461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 5, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(4332), 1, + sym_identifier, + STATE(729), 1, + sym_field_declaration_list, + STATE(1670), 1, + sym_ms_declspec_modifier, [61480] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, ACTIONS(4334), 1, anon_sym_SEMI, - STATE(1502), 2, + STATE(1365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, [61497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4336), 1, - anon_sym_SEMI, - STATE(1509), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61514] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3772), 1, + ACTIONS(3792), 1, anon_sym_COMMA, - ACTIONS(4340), 1, + ACTIONS(4338), 1, anon_sym___attribute, - STATE(1506), 1, + STATE(1504), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4338), 2, + ACTIONS(4336), 2, anon_sym_SEMI, anon_sym___attribute__, - [61531] = 5, + [61514] = 4, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4340), 1, + anon_sym_SQUOTE, + STATE(1530), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4342), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [61528] = 5, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4344), 1, + anon_sym_DQUOTE, + ACTIONS(4346), 1, + aux_sym_string_literal_token1, + ACTIONS(4348), 1, + sym_escape_sequence, + STATE(1554), 1, + aux_sym_string_literal_repeat1, + [61544] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4342), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1897), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61548] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3772), 1, - anon_sym_COMMA, - ACTIONS(4346), 1, - anon_sym___attribute, - STATE(1507), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4344), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [61565] = 4, - ACTIONS(3515), 1, + [61560] = 4, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(4352), 1, anon_sym_SQUOTE, - STATE(1557), 1, + STATE(1530), 1, aux_sym_char_literal_repeat1, - ACTIONS(4350), 2, + ACTIONS(4342), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [61579] = 5, - ACTIONS(3515), 1, + [61574] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - aux_sym_preproc_include_token2, + ACTIONS(3716), 1, + sym_identifier, ACTIONS(4354), 1, - anon_sym_LPAREN, + aux_sym_preproc_if_token2, + STATE(1414), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [61588] = 5, + ACTIONS(3446), 1, + sym_comment, ACTIONS(4356), 1, + aux_sym_preproc_include_token2, + ACTIONS(4358), 1, + anon_sym_LPAREN, + ACTIONS(4360), 1, + sym_preproc_arg, + STATE(1705), 1, + sym_preproc_params, + [61604] = 5, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + aux_sym_preproc_include_token2, + ACTIONS(4364), 1, sym_preproc_arg, - STATE(1718), 1, + STATE(1687), 1, sym_preproc_params, - [61595] = 5, + [61620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(4358), 1, + ACTIONS(4366), 1, aux_sym_preproc_if_token2, - STATE(1415), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(1523), 2, sym_enumerator, - [61611] = 4, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [61634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_COMMA, - STATE(1538), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4362), 2, + ACTIONS(3746), 1, + anon_sym_LPAREN2, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4368), 1, anon_sym_RPAREN, - anon_sym_COLON, - [61625] = 5, + STATE(1432), 1, + sym_parameter_list, + [61650] = 5, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_LPAREN, + ACTIONS(4370), 1, + aux_sym_preproc_include_token2, + ACTIONS(4372), 1, + sym_preproc_arg, + STATE(1684), 1, + sym_preproc_params, + [61666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 1, + ACTIONS(4374), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + STATE(1529), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4377), 2, anon_sym_RPAREN, - STATE(1607), 1, - aux_sym_parameter_list_repeat1, - STATE(1666), 1, - aux_sym__old_style_parameter_list_repeat1, - [61641] = 4, + anon_sym_COLON, + [61680] = 4, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4379), 1, + anon_sym_SQUOTE, + STATE(1530), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4381), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [61694] = 5, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_DQUOTE, + ACTIONS(4386), 1, + aux_sym_string_literal_token1, + ACTIONS(4388), 1, + sym_escape_sequence, + STATE(1547), 1, + aux_sym_string_literal_repeat1, + [61710] = 5, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4390), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, + aux_sym_string_literal_token1, + ACTIONS(4394), 1, + sym_escape_sequence, + STATE(1520), 1, + aux_sym_string_literal_repeat1, + [61726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4396), 1, anon_sym_COMMA, - STATE(1549), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4370), 2, + STATE(1540), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4398), 2, anon_sym_RPAREN, anon_sym_COLON, - [61655] = 5, + [61740] = 5, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_LPAREN, + ACTIONS(4400), 1, + aux_sym_preproc_include_token2, + ACTIONS(4402), 1, + sym_preproc_arg, + STATE(1710), 1, + sym_preproc_params, + [61756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, + anon_sym___attribute, + ACTIONS(4404), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [61768] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4372), 1, + ACTIONS(4408), 1, anon_sym_SEMI, - STATE(2014), 1, + STATE(1873), 1, sym_attribute_specifier, - [61671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - sym_identifier, - ACTIONS(4322), 1, - aux_sym_preproc_if_token2, - STATE(1529), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - [61687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(4374), 1, - aux_sym_preproc_if_token2, - STATE(1427), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61701] = 4, + [61784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - STATE(1774), 1, - sym_argument_list, - ACTIONS(4376), 2, + ACTIONS(4410), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61715] = 5, - ACTIONS(3515), 1, + ACTIONS(4412), 1, + anon_sym_RPAREN, + STATE(1594), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1601), 1, + aux_sym_parameter_list_repeat1, + [61800] = 5, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4378), 1, - anon_sym_DQUOTE, - ACTIONS(4380), 1, + ACTIONS(4346), 1, aux_sym_string_literal_token1, - ACTIONS(4382), 1, + ACTIONS(4348), 1, sym_escape_sequence, + ACTIONS(4414), 1, + anon_sym_DQUOTE, STATE(1554), 1, aux_sym_string_literal_repeat1, - [61731] = 4, + [61816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4416), 1, anon_sym_COMMA, - STATE(1538), 1, + STATE(1552), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4418), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [61830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_COMMA, + STATE(1540), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4387), 2, + ACTIONS(4423), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [61844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + anon_sym_COMMA, + STATE(1555), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4427), 2, anon_sym_RPAREN, anon_sym_COLON, - [61745] = 4, + [61858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(4429), 1, anon_sym___except, - ACTIONS(4391), 1, + ACTIONS(4431), 1, anon_sym___finally, - STATE(198), 2, + STATE(249), 2, sym_seh_except_clause, sym_seh_finally_clause, - [61759] = 5, - ACTIONS(3515), 1, + [61872] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 1, - anon_sym_DQUOTE, - ACTIONS(4395), 1, - aux_sym_string_literal_token1, - ACTIONS(4397), 1, - sym_escape_sequence, - STATE(1570), 1, - aux_sym_string_literal_repeat1, - [61775] = 5, - ACTIONS(3515), 1, + ACTIONS(4433), 1, + anon_sym___except, + ACTIONS(4435), 1, + anon_sym___finally, + STATE(196), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [61886] = 5, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4358), 1, anon_sym_LPAREN, - ACTIONS(4399), 1, + ACTIONS(4437), 1, aux_sym_preproc_include_token2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, sym_preproc_arg, - STATE(1708), 1, + STATE(1717), 1, sym_preproc_params, - [61791] = 4, + [61902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 1, - anon_sym___except, - ACTIONS(4405), 1, - anon_sym___finally, - STATE(242), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61805] = 5, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + STATE(1735), 1, + sym_argument_list, + ACTIONS(4441), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [61916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4407), 1, - anon_sym_SEMI, - STATE(2008), 1, - sym_attribute_specifier, - [61821] = 4, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(4273), 1, + aux_sym_preproc_if_token2, + STATE(1560), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1802), 1, + sym_enumerator, + [61932] = 5, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4346), 1, + aux_sym_string_literal_token1, + ACTIONS(4348), 1, + sym_escape_sequence, + ACTIONS(4443), 1, + anon_sym_DQUOTE, + STATE(1554), 1, + aux_sym_string_literal_repeat1, + [61948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4445), 1, anon_sym___except, - ACTIONS(4411), 1, + ACTIONS(4447), 1, anon_sym___finally, - STATE(242), 2, + STATE(249), 2, sym_seh_except_clause, sym_seh_finally_clause, - [61835] = 4, + [61962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, + ACTIONS(4449), 1, anon_sym_COMMA, - STATE(1545), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4416), 2, + STATE(1549), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4452), 2, anon_sym_RPAREN, anon_sym_COLON, - [61849] = 4, + [61976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(4454), 1, anon_sym___except, - ACTIONS(4420), 1, + ACTIONS(4456), 1, anon_sym___finally, - STATE(222), 2, + STATE(106), 2, sym_seh_except_clause, sym_seh_finally_clause, - [61863] = 5, + [61990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(3746), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4422), 1, + ACTIONS(4458), 1, anon_sym_RPAREN, - STATE(1465), 1, + STATE(1432), 1, sym_parameter_list, - [61879] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym___except, - ACTIONS(4426), 1, - anon_sym___finally, - STATE(89), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61893] = 4, + [62006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4416), 1, anon_sym_COMMA, - STATE(1561), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4428), 2, + STATE(1529), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4460), 2, anon_sym_RPAREN, anon_sym_COLON, - [61907] = 4, + [62020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(4430), 1, - aux_sym_preproc_if_token2, - STATE(1535), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, + ACTIONS(4396), 1, anon_sym_COMMA, - STATE(1563), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4434), 2, + STATE(1533), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4462), 2, anon_sym_RPAREN, anon_sym_COLON, - [61935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - anon_sym___attribute, - ACTIONS(4436), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [61947] = 4, - ACTIONS(3515), 1, + [62034] = 5, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4440), 1, - anon_sym_SQUOTE, - STATE(1557), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4350), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [61961] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4442), 1, + ACTIONS(4464), 1, anon_sym_DQUOTE, - ACTIONS(4444), 1, + ACTIONS(4466), 1, aux_sym_string_literal_token1, - ACTIONS(4446), 1, + ACTIONS(4469), 1, sym_escape_sequence, - STATE(1565), 1, + STATE(1554), 1, aux_sym_string_literal_repeat1, - [61977] = 5, + [62050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - ACTIONS(4448), 1, + ACTIONS(4425), 1, + anon_sym_COMMA, + STATE(1549), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4472), 2, anon_sym_RPAREN, - STATE(1465), 1, - sym_parameter_list, - [61993] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - aux_sym_preproc_include_token2, - ACTIONS(4452), 1, - sym_preproc_arg, - STATE(1692), 1, - sym_preproc_params, - [62009] = 4, - ACTIONS(3515), 1, + anon_sym_COLON, + [62064] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym_SQUOTE, - STATE(1557), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4456), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [62023] = 5, - ACTIONS(3515), 1, + ACTIONS(4474), 1, + anon_sym___except, + ACTIONS(4476), 1, + anon_sym___finally, + STATE(223), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [62078] = 5, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(4478), 1, anon_sym_DQUOTE, - ACTIONS(4461), 1, + ACTIONS(4480), 1, aux_sym_string_literal_token1, - ACTIONS(4463), 1, + ACTIONS(4482), 1, sym_escape_sequence, - STATE(1569), 1, + STATE(1538), 1, aux_sym_string_literal_repeat1, - [62039] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4465), 1, - aux_sym_preproc_include_token2, - ACTIONS(4467), 1, - sym_preproc_arg, - STATE(1699), 1, - sym_preproc_params, - [62055] = 5, - ACTIONS(3515), 1, + [62094] = 5, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4358), 1, anon_sym_LPAREN, - ACTIONS(4469), 1, + ACTIONS(4484), 1, aux_sym_preproc_include_token2, - ACTIONS(4471), 1, + ACTIONS(4486), 1, sym_preproc_arg, - STATE(1707), 1, + STATE(1696), 1, sym_preproc_params, - [62071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4473), 1, - anon_sym_COMMA, - STATE(1561), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4476), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [62085] = 5, - ACTIONS(3515), 1, + [62110] = 5, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4358), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4488), 1, aux_sym_preproc_include_token2, - ACTIONS(4480), 1, + ACTIONS(4490), 1, sym_preproc_arg, - STATE(1700), 1, + STATE(1692), 1, sym_preproc_params, - [62101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, - anon_sym_COMMA, - STATE(1545), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4482), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [62115] = 4, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4484), 1, - anon_sym_SQUOTE, - STATE(1557), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4350), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [62129] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4486), 1, - anon_sym_DQUOTE, - ACTIONS(4488), 1, - aux_sym_string_literal_token1, - ACTIONS(4491), 1, - sym_escape_sequence, - STATE(1565), 1, - aux_sym_string_literal_repeat1, - [62145] = 4, + [62126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_COMMA, - STATE(1530), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4494), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [62159] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4496), 1, - aux_sym_preproc_include_token2, - ACTIONS(4498), 1, - sym_preproc_arg, - STATE(1712), 1, - sym_preproc_params, - [62175] = 5, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(4492), 1, + aux_sym_preproc_if_token2, + STATE(1409), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1802), 1, + sym_enumerator, + [62142] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4500), 1, + ACTIONS(4494), 1, anon_sym_SEMI, - STATE(2018), 1, + STATE(1991), 1, sym_attribute_specifier, - [62191] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4444), 1, - aux_sym_string_literal_token1, - ACTIONS(4446), 1, - sym_escape_sequence, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - STATE(1565), 1, - aux_sym_string_literal_repeat1, - [62207] = 5, - ACTIONS(3515), 1, + [62158] = 4, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4444), 1, - aux_sym_string_literal_token1, - ACTIONS(4446), 1, + ACTIONS(4496), 1, + anon_sym_SQUOTE, + STATE(1530), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4342), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - ACTIONS(4504), 1, - anon_sym_DQUOTE, - STATE(1565), 1, - aux_sym_string_literal_repeat1, - [62223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4506), 1, - anon_sym_SEMI, - STATE(1634), 1, - aux_sym_declaration_repeat1, - [62236] = 4, + [62172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, - anon_sym_COMMA, - ACTIONS(4508), 1, + ACTIONS(4498), 1, anon_sym_RPAREN, - STATE(1661), 1, - aux_sym_argument_list_repeat1, - [62249] = 4, + ACTIONS(4500), 1, + anon_sym_COLON, + STATE(1896), 1, + sym_gnu_asm_goto_list, + [62185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2954), 1, anon_sym_LBRACE, - ACTIONS(4510), 1, + ACTIONS(4502), 1, sym_identifier, - STATE(1069), 1, + STATE(1050), 1, sym_enumerator_list, - [62262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_RPAREN, - ACTIONS(4514), 1, - anon_sym_COLON, - STATE(1682), 1, - sym_gnu_asm_clobber_list, - [62275] = 2, + [62198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 3, + ACTIONS(4504), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [62284] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_COMMA, - ACTIONS(4521), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_generic_expression_repeat1, - [62297] = 4, + [62207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, + ACTIONS(4506), 3, anon_sym_COMMA, - ACTIONS(4526), 1, anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_preproc_params_repeat1, - [62310] = 4, - ACTIONS(3515), 1, + anon_sym_COLON, + [62216] = 4, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4528), 1, + ACTIONS(4508), 1, aux_sym_preproc_include_token2, - ACTIONS(4530), 1, + ACTIONS(4510), 1, anon_sym_LPAREN2, - STATE(1802), 1, + STATE(1796), 1, sym_preproc_argument_list, - [62323] = 4, + [62229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, + ACTIONS(3211), 1, + anon_sym_COMMA, + ACTIONS(4512), 1, anon_sym_RPAREN, - ACTIONS(4534), 1, - anon_sym_COLON, - STATE(1574), 1, - sym_gnu_asm_input_operand_list, - [62336] = 4, + STATE(1672), 1, + aux_sym_generic_expression_repeat1, + [62242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_COMMA, - ACTIONS(4539), 1, + ACTIONS(4500), 1, + anon_sym_COLON, + ACTIONS(4514), 1, anon_sym_RPAREN, - STATE(1580), 1, - aux_sym__old_style_parameter_list_repeat1, - [62349] = 4, + STATE(2000), 1, + sym_gnu_asm_goto_list, + [62255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4516), 1, anon_sym_COMMA, - ACTIONS(4543), 1, + ACTIONS(4518), 1, anon_sym_RBRACK_RBRACK, - STATE(1590), 1, + STATE(1579), 1, aux_sym_attribute_declaration_repeat1, - [62362] = 4, + [62268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(4545), 1, + ACTIONS(3573), 1, anon_sym_RPAREN, - STATE(1672), 1, + ACTIONS(4520), 1, + anon_sym_COMMA, + STATE(1571), 1, aux_sym_preproc_argument_list_repeat1, - [62375] = 4, + [62281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - ACTIONS(4547), 1, - anon_sym_RBRACK_RBRACK, - STATE(1656), 1, - aux_sym_attribute_declaration_repeat1, - [62388] = 4, + ACTIONS(4523), 1, + anon_sym_RPAREN, + STATE(1668), 1, + aux_sym_argument_list_repeat1, + [62294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, - anon_sym_COMMA, - ACTIONS(4551), 1, + ACTIONS(4525), 1, anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_preproc_params_repeat1, - [62401] = 2, + ACTIONS(4527), 1, + anon_sym_COLON, + STATE(1563), 1, + sym_gnu_asm_clobber_list, + [62307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4553), 3, + ACTIONS(4516), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62410] = 4, + ACTIONS(4529), 1, + anon_sym_RBRACK_RBRACK, + STATE(1604), 1, + aux_sym_attribute_declaration_repeat1, + [62320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4555), 1, + ACTIONS(4531), 1, anon_sym_SEMI, - STATE(1594), 1, + STATE(1583), 1, aux_sym_declaration_repeat1, - [62423] = 4, + [62333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(4533), 1, anon_sym_COMMA, - ACTIONS(4557), 1, + ACTIONS(4536), 1, anon_sym_RPAREN, STATE(1576), 1, - aux_sym_generic_expression_repeat1, - [62436] = 4, + aux_sym__old_style_parameter_list_repeat1, + [62346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4559), 1, - sym_identifier, - STATE(1695), 1, - sym_variadic_parameter, - [62449] = 3, + ACTIONS(4538), 1, + anon_sym_COMMA, + ACTIONS(4541), 1, + anon_sym_RPAREN, + STATE(1577), 1, + aux_sym_preproc_params_repeat1, + [62359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, + ACTIONS(3464), 1, + anon_sym_COMMA, + ACTIONS(4543), 1, anon_sym_RPAREN, - ACTIONS(4561), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [62460] = 4, + STATE(1571), 1, + aux_sym_preproc_argument_list_repeat1, + [62372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4516), 1, anon_sym_COMMA, - ACTIONS(4565), 1, + ACTIONS(4545), 1, anon_sym_RBRACK_RBRACK, - STATE(1656), 1, + STATE(1607), 1, aux_sym_attribute_declaration_repeat1, - [62473] = 2, + [62385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 3, + ACTIONS(4516), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62482] = 4, + ACTIONS(4547), 1, + anon_sym_RBRACK_RBRACK, + STATE(1607), 1, + aux_sym_attribute_declaration_repeat1, + [62398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4569), 1, + ACTIONS(4549), 1, anon_sym_SEMI, - STATE(1602), 1, + STATE(1591), 1, aux_sym_declaration_repeat1, - [62495] = 4, + [62411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4571), 1, + ACTIONS(4551), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62508] = 4, + [62424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4573), 1, + ACTIONS(4553), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62521] = 2, + [62437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 3, + ACTIONS(4555), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [62530] = 4, + [62446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4516), 1, anon_sym_COMMA, - ACTIONS(4577), 1, + ACTIONS(4557), 1, anon_sym_RBRACK_RBRACK, - STATE(1657), 1, + STATE(1580), 1, aux_sym_attribute_declaration_repeat1, - [62543] = 4, + [62459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4559), 1, anon_sym_COMMA, - ACTIONS(4579), 1, - anon_sym_SEMI, - STATE(1664), 1, - aux_sym_declaration_repeat1, - [62556] = 4, + ACTIONS(4561), 1, + anon_sym_RPAREN, + STATE(1577), 1, + aux_sym_preproc_params_repeat1, + [62472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, + ACTIONS(4563), 1, + anon_sym_COMMA, + ACTIONS(4565), 1, anon_sym_RPAREN, - ACTIONS(4583), 1, - anon_sym_COLON, - STATE(1579), 1, - sym_gnu_asm_output_operand_list, - [62569] = 2, + STATE(1603), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [62485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 3, + ACTIONS(4567), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [62578] = 4, + [62494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4587), 1, + ACTIONS(4569), 1, anon_sym_SEMI, - STATE(1606), 1, + STATE(1595), 1, aux_sym_declaration_repeat1, - [62591] = 4, + [62507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4589), 1, + ACTIONS(4571), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62604] = 4, + [62520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4591), 1, + ACTIONS(4573), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62617] = 4, + [62533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4595), 1, - anon_sym_RPAREN, - STATE(1607), 1, - aux_sym_parameter_list_repeat1, - [62630] = 4, + ACTIONS(4575), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + [62546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3464), 1, anon_sym_COMMA, - ACTIONS(4597), 1, + ACTIONS(4577), 1, anon_sym_RPAREN, - STATE(1672), 1, + STATE(1571), 1, aux_sym_preproc_argument_list_repeat1, - [62643] = 2, + [62559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 3, + ACTIONS(4579), 1, anon_sym_COMMA, + ACTIONS(4581), 1, anon_sym_RPAREN, - anon_sym_COLON, - [62652] = 4, + STATE(1576), 1, + aux_sym__old_style_parameter_list_repeat1, + [62572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4601), 1, + ACTIONS(4583), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62665] = 4, + [62585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 1, + anon_sym_RPAREN, + ACTIONS(4587), 1, + anon_sym_COLON, + STATE(1573), 1, + sym_gnu_asm_input_operand_list, + [62598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3265), 1, + anon_sym_RBRACE, + ACTIONS(4589), 1, + anon_sym_COMMA, + STATE(1597), 1, + aux_sym_initializer_list_repeat1, + [62611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, + ACTIONS(4592), 1, anon_sym_COMMA, - ACTIONS(4603), 1, + ACTIONS(4594), 1, anon_sym_RPAREN, - STATE(1676), 1, + STATE(1601), 1, aux_sym_parameter_list_repeat1, - [62678] = 4, + [62624] = 4, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4510), 1, + anon_sym_LPAREN2, + ACTIONS(4596), 1, + aux_sym_preproc_include_token2, + STATE(1796), 1, + sym_preproc_argument_list, + [62637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 1, - anon_sym_COLON, - ACTIONS(4605), 1, + ACTIONS(4598), 1, anon_sym_RPAREN, - STATE(1616), 1, + ACTIONS(4600), 1, + anon_sym_COLON, + STATE(1647), 1, sym_gnu_asm_output_operand_list, - [62691] = 4, + [62650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, - anon_sym_RBRACE, - ACTIONS(4607), 1, + ACTIONS(4592), 1, anon_sym_COMMA, - STATE(1609), 1, - aux_sym_initializer_list_repeat1, - [62704] = 4, + ACTIONS(4602), 1, + anon_sym_RPAREN, + STATE(1669), 1, + aux_sym_parameter_list_repeat1, + [62663] = 4, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4510), 1, + anon_sym_LPAREN2, + ACTIONS(4604), 1, + aux_sym_preproc_include_token2, + STATE(1796), 1, + sym_preproc_argument_list, + [62676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4610), 1, - sym_identifier, - STATE(740), 1, - sym_field_declaration_list, - [62717] = 4, + ACTIONS(4606), 1, + anon_sym_COMMA, + ACTIONS(4609), 1, + anon_sym_RPAREN, + STATE(1603), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [62689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, - sym_identifier, - STATE(737), 1, - sym_field_declaration_list, - [62730] = 4, + ACTIONS(4516), 1, + anon_sym_COMMA, + ACTIONS(4611), 1, + anon_sym_RBRACK_RBRACK, + STATE(1607), 1, + aux_sym_attribute_declaration_repeat1, + [62702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4616), 1, - anon_sym_RPAREN, - STATE(1668), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [62743] = 4, + ACTIONS(4613), 1, + anon_sym_SEMI, + STATE(1611), 1, + aux_sym_declaration_repeat1, + [62715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4618), 1, + ACTIONS(4615), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1665), 1, aux_sym_declaration_repeat1, - [62756] = 4, - ACTIONS(3515), 1, + [62728] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, - anon_sym_LPAREN2, + ACTIONS(4617), 1, + anon_sym_COMMA, ACTIONS(4620), 1, - aux_sym_preproc_include_token2, - STATE(1802), 1, - sym_preproc_argument_list, - [62769] = 4, + anon_sym_RBRACK_RBRACK, + STATE(1607), 1, + aux_sym_attribute_declaration_repeat1, + [62741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4622), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1616), 1, aux_sym_declaration_repeat1, - [62782] = 4, + [62754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, - anon_sym_COLON, + ACTIONS(4112), 1, + anon_sym_COMMA, ACTIONS(4624), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym_gnu_asm_input_operand_list, - [62795] = 4, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [62767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(4626), 3, anon_sym_COMMA, - ACTIONS(4626), 1, anon_sym_RPAREN, - STATE(1661), 1, - aux_sym_argument_list_repeat1, - [62808] = 4, + anon_sym_COLON, + [62776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4628), 1, anon_sym_SEMI, - STATE(1622), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62821] = 4, + [62789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4630), 3, anon_sym_COMMA, - ACTIONS(4630), 1, anon_sym_RPAREN, - STATE(1672), 1, - aux_sym_preproc_argument_list_repeat1, - [62834] = 4, + anon_sym_COLON, + [62798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4632), 1, anon_sym_SEMI, - STATE(1625), 1, + STATE(1652), 1, aux_sym_declaration_repeat1, - [62847] = 4, + [62811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4634), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1620), 1, aux_sym_declaration_repeat1, - [62860] = 4, + [62824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4636), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62873] = 4, + [62837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4638), 1, anon_sym_SEMI, - STATE(1686), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62886] = 4, + [62850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4640), 1, anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [62899] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4642), 1, - anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62912] = 4, - ACTIONS(3), 1, + [62863] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(3223), 1, - anon_sym_COMMA, - ACTIONS(3225), 1, - anon_sym_RBRACE, - STATE(1670), 1, - aux_sym_initializer_list_repeat1, - [62925] = 4, + STATE(1562), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4642), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [62874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4644), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62938] = 4, + [62887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4646), 1, - anon_sym_RPAREN, - STATE(1612), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [62951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4648), 1, anon_sym_SEMI, - STATE(1633), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [62964] = 4, + [62900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - ACTIONS(4650), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [62977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4652), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [62986] = 4, + ACTIONS(3217), 1, + anon_sym_RPAREN, + STATE(1654), 1, + aux_sym_argument_list_repeat1, + [62913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4648), 3, anon_sym_COMMA, - ACTIONS(4654), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [62999] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [62922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4650), 1, anon_sym_COMMA, - ACTIONS(4656), 1, + ACTIONS(4653), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63012] = 4, + [62935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4658), 1, + ACTIONS(4655), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1629), 1, aux_sym_declaration_repeat1, - [63025] = 4, + [62948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4660), 1, + ACTIONS(4657), 1, anon_sym_SEMI, - STATE(1639), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4662), 1, - sym_identifier, - STATE(731), 1, - sym_field_declaration_list, - [63051] = 4, + [62961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4664), 1, + ACTIONS(4659), 1, anon_sym_SEMI, - STATE(1642), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63064] = 4, + [62974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4666), 1, + ACTIONS(4661), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1630), 1, aux_sym_declaration_repeat1, - [63077] = 4, + [62987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(4663), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63090] = 4, + [63000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4670), 1, + ACTIONS(4665), 1, anon_sym_SEMI, - STATE(1643), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63103] = 4, + [63013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4672), 1, + ACTIONS(4667), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63116] = 4, + [63026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4559), 1, anon_sym_COMMA, - ACTIONS(4674), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63129] = 4, + ACTIONS(4669), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_preproc_params_repeat1, + [63039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4676), 1, + ACTIONS(4671), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1635), 1, aux_sym_declaration_repeat1, - [63142] = 4, + [63052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4673), 1, anon_sym_SEMI, - STATE(1647), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [63155] = 4, + [63065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4680), 1, + ACTIONS(4675), 1, anon_sym_SEMI, - STATE(1650), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63168] = 4, + [63078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4682), 1, + ACTIONS(4677), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63181] = 4, + [63091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4684), 1, + ACTIONS(4679), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1639), 1, aux_sym_declaration_repeat1, - [63194] = 4, + [63104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4686), 1, + ACTIONS(4681), 1, anon_sym_SEMI, - STATE(1651), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63207] = 4, + [63117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4688), 1, + ACTIONS(4683), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63220] = 4, + [63130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4685), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63233] = 4, + [63143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4687), 1, + anon_sym_EQ, + ACTIONS(4073), 2, anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63246] = 3, - ACTIONS(3515), 1, + anon_sym_RBRACE, + [63154] = 3, + ACTIONS(3446), 1, sym_comment, - STATE(1553), 1, + STATE(1519), 1, aux_sym_char_literal_repeat1, - ACTIONS(4694), 2, + ACTIONS(4689), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [63257] = 4, + [63165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [63174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(3207), 1, anon_sym_COMMA, - ACTIONS(4696), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63270] = 4, + ACTIONS(3209), 1, + anon_sym_RBRACE, + STATE(1660), 1, + aux_sym_initializer_list_repeat1, + [63187] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4693), 1, + sym_identifier, + STATE(1764), 1, + sym_variadic_parameter, + [63200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(4563), 1, + anon_sym_COMMA, + ACTIONS(4695), 1, + anon_sym_RPAREN, + STATE(1587), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [63213] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(4698), 1, + ACTIONS(4697), 1, sym_identifier, - STATE(1069), 1, - sym_enumerator_list, - [63283] = 4, - ACTIONS(3515), 1, + STATE(731), 1, + sym_field_declaration_list, + [63226] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, - anon_sym_LPAREN2, - ACTIONS(4700), 1, - aux_sym_preproc_include_token2, - STATE(1802), 1, - sym_preproc_argument_list, - [63296] = 4, + ACTIONS(4587), 1, + anon_sym_COLON, + ACTIONS(4699), 1, + anon_sym_RPAREN, + STATE(1676), 1, + sym_gnu_asm_input_operand_list, + [63239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, - anon_sym_COMMA, - ACTIONS(4705), 1, - anon_sym_RBRACK_RBRACK, - STATE(1656), 1, - aux_sym_attribute_declaration_repeat1, - [63309] = 4, + ACTIONS(4600), 1, + anon_sym_COLON, + ACTIONS(4701), 1, + anon_sym_RPAREN, + STATE(1596), 1, + sym_gnu_asm_output_operand_list, + [63252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, - anon_sym_COMMA, - ACTIONS(4707), 1, - anon_sym_RBRACK_RBRACK, - STATE(1656), 1, - aux_sym_attribute_declaration_repeat1, - [63322] = 4, + ACTIONS(4705), 1, + anon_sym_RPAREN, + ACTIONS(4703), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [63263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RPAREN, - STATE(1617), 1, - aux_sym_argument_list_repeat1, - [63335] = 4, + ACTIONS(4707), 1, + anon_sym_SEMI, + STATE(1658), 1, + aux_sym_declaration_repeat1, + [63276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4709), 1, anon_sym_SEMI, - STATE(1663), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63348] = 4, + [63289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, ACTIONS(4711), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63361] = 4, + [63302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, - anon_sym_RPAREN, + ACTIONS(2493), 1, + anon_sym_LBRACE, ACTIONS(4713), 1, + sym_identifier, + STATE(729), 1, + sym_field_declaration_list, + [63315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3215), 1, anon_sym_COMMA, - STATE(1661), 1, + ACTIONS(4715), 1, + anon_sym_RPAREN, + STATE(1668), 1, aux_sym_argument_list_repeat1, - [63374] = 4, + [63328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(3464), 1, anon_sym_COMMA, - ACTIONS(4716), 1, - anon_sym_RBRACK_RBRACK, - STATE(1583), 1, - aux_sym_attribute_declaration_repeat1, - [63387] = 4, + ACTIONS(4717), 1, + anon_sym_RPAREN, + STATE(1571), 1, + aux_sym_preproc_argument_list_repeat1, + [63341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4718), 1, + ACTIONS(3199), 3, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63400] = 4, + anon_sym_COLON, + [63350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [63359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4720), 1, + ACTIONS(4721), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63413] = 3, - ACTIONS(3515), 1, + [63372] = 3, + ACTIONS(3446), 1, sym_comment, - STATE(1527), 1, + STATE(1522), 1, aux_sym_char_literal_repeat1, - ACTIONS(4722), 2, + ACTIONS(4723), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [63424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 1, - anon_sym_COMMA, - ACTIONS(4726), 1, - anon_sym_RPAREN, - STATE(1580), 1, - aux_sym__old_style_parameter_list_repeat1, - [63437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - anon_sym_COLON, - ACTIONS(4728), 1, - anon_sym_RPAREN, - STATE(1683), 1, - sym_gnu_asm_clobber_list, - [63450] = 4, + [63383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RPAREN, - STATE(1668), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [63463] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 1, - anon_sym_COMMA, - ACTIONS(3221), 1, - anon_sym_RPAREN, - STATE(1572), 1, - aux_sym_argument_list_repeat1, - [63476] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 1, + ACTIONS(2002), 1, anon_sym_RBRACE, - ACTIONS(4735), 1, + ACTIONS(4725), 1, anon_sym_COMMA, - STATE(1609), 1, + STATE(1597), 1, aux_sym_initializer_list_repeat1, - [63489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3207), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [63498] = 4, + [63396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 1, - anon_sym_RPAREN, - ACTIONS(4737), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - STATE(1672), 1, - aux_sym_preproc_argument_list_repeat1, - [63511] = 4, + ACTIONS(4727), 1, + anon_sym_SEMI, + STATE(1677), 1, + aux_sym_declaration_repeat1, + [63409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4740), 1, + ACTIONS(4729), 1, anon_sym_SEMI, - STATE(1653), 1, + STATE(1673), 1, aux_sym_declaration_repeat1, - [63524] = 2, + [63422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [63533] = 3, + ACTIONS(4112), 1, + anon_sym_COMMA, + ACTIONS(4731), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [63435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, - anon_sym_EQ, - ACTIONS(4050), 2, + ACTIONS(4112), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [63544] = 4, + ACTIONS(4733), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [63448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4749), 1, - anon_sym_RPAREN, - STATE(1676), 1, - aux_sym_parameter_list_repeat1, - [63557] = 2, + ACTIONS(4735), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [63461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + anon_sym_LBRACE, + ACTIONS(4737), 1, + sym_identifier, + STATE(1050), 1, + sym_enumerator_list, + [63474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 3, + ACTIONS(3215), 1, anon_sym_COMMA, + ACTIONS(3219), 1, anon_sym_RPAREN, - anon_sym_COLON, - [63566] = 4, + STATE(1572), 1, + aux_sym_argument_list_repeat1, + [63487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(3253), 1, + anon_sym_RPAREN, + ACTIONS(4739), 1, anon_sym_COMMA, - ACTIONS(4756), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63579] = 3, - ACTIONS(3515), 1, - sym_comment, - STATE(1564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4758), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [63590] = 2, + STATE(1668), 1, + aux_sym_argument_list_repeat1, + [63500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 3, + ACTIONS(4742), 1, anon_sym_COMMA, + ACTIONS(4745), 1, anon_sym_RPAREN, - anon_sym_COLON, - [63599] = 4, + STATE(1669), 1, + aux_sym_parameter_list_repeat1, + [63513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(4762), 1, + ACTIONS(4747), 1, sym_identifier, - STATE(853), 1, - sym_enumerator_list, - [63612] = 4, + STATE(726), 1, + sym_field_declaration_list, + [63526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, + ACTIONS(4749), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4766), 1, anon_sym_COLON, - STATE(1961), 1, - sym_gnu_asm_goto_list, - [63625] = 4, + [63535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_COLON, - ACTIONS(4768), 1, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4754), 1, anon_sym_RPAREN, - STATE(1999), 1, - sym_gnu_asm_goto_list, - [63638] = 4, - ACTIONS(3515), 1, + STATE(1672), 1, + aux_sym_generic_expression_repeat1, + [63548] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(4112), 1, + anon_sym_COMMA, + ACTIONS(4756), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [63561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + anon_sym_LBRACE, + ACTIONS(4758), 1, + sym_identifier, + STATE(848), 1, + sym_enumerator_list, + [63574] = 4, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4510), 1, anon_sym_LPAREN2, - ACTIONS(4770), 1, + ACTIONS(4760), 1, aux_sym_preproc_include_token2, - STATE(1802), 1, + STATE(1796), 1, sym_preproc_argument_list, - [63651] = 4, + [63587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, - anon_sym_COMMA, - ACTIONS(4772), 1, + ACTIONS(4527), 1, + anon_sym_COLON, + ACTIONS(4762), 1, anon_sym_RPAREN, - STATE(1584), 1, - aux_sym_preproc_params_repeat1, - [63664] = 4, + STATE(1569), 1, + sym_gnu_asm_clobber_list, + [63600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(4774), 1, + ACTIONS(4764), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [63677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(506), 1, - anon_sym_LBRACE, - STATE(204), 1, - sym_compound_statement, - [63687] = 2, + [63613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 2, + ACTIONS(4112), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [63695] = 3, + ACTIONS(4766), 1, + anon_sym_SEMI, + STATE(1626), 1, + aux_sym_declaration_repeat1, + [63626] = 3, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4768), 1, + aux_sym_preproc_include_token2, + ACTIONS(4770), 1, + sym_preproc_arg, + [63636] = 3, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4772), 1, + aux_sym_preproc_include_token2, + ACTIONS(4774), 1, + sym_preproc_arg, + [63646] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4776), 1, anon_sym_LPAREN2, - STATE(381), 1, + STATE(340), 1, sym_parenthesized_expression, - [63705] = 3, - ACTIONS(3515), 1, + [63656] = 3, + ACTIONS(3446), 1, sym_comment, ACTIONS(4778), 1, aux_sym_preproc_include_token2, ACTIONS(4780), 1, sym_preproc_arg, - [63715] = 2, + [63666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 2, + ACTIONS(3265), 2, anon_sym_COMMA, anon_sym_RBRACE, - [63723] = 3, - ACTIONS(3515), 1, + [63674] = 3, + ACTIONS(3446), 1, sym_comment, ACTIONS(4782), 1, aux_sym_preproc_include_token2, ACTIONS(4784), 1, sym_preproc_arg, - [63733] = 3, - ACTIONS(3), 1, + [63684] = 3, + ACTIONS(3446), 1, sym_comment, ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1759), 1, - sym_parenthesized_expression, - [63743] = 3, + aux_sym_preproc_include_token2, + ACTIONS(4788), 1, + sym_preproc_arg, + [63694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 1, - sym_identifier, - STATE(1596), 1, - sym_attribute, - [63753] = 2, + ACTIONS(3287), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [63702] = 3, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4790), 1, + aux_sym_preproc_include_token2, + ACTIONS(4792), 1, + sym_preproc_arg, + [63712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4794), 2, anon_sym_COMMA, anon_sym_RPAREN, - [63761] = 3, + [63720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, - anon_sym_COMMA, - ACTIONS(4792), 1, - anon_sym_RBRACE, - [63771] = 3, + ACTIONS(2445), 1, + anon_sym_LPAREN2, + STATE(1875), 1, + sym_argument_list, + [63730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - STATE(1544), 1, + STATE(188), 1, sym_compound_statement, - [63781] = 3, + [63740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, - anon_sym_LBRACE, - STATE(190), 1, - sym_compound_statement, - [63791] = 3, - ACTIONS(3515), 1, + ACTIONS(4776), 1, + anon_sym_LPAREN2, + STATE(348), 1, + sym_parenthesized_expression, + [63750] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4794), 1, - aux_sym_preproc_include_token2, ACTIONS(4796), 1, + aux_sym_preproc_include_token2, + ACTIONS(4798), 1, sym_preproc_arg, - [63801] = 3, - ACTIONS(3515), 1, + [63760] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, - aux_sym_preproc_include_token2, ACTIONS(4800), 1, - sym_preproc_arg, - [63811] = 3, + anon_sym_LPAREN2, + STATE(1762), 1, + sym_parenthesized_expression, + [63770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(176), 1, - sym_compound_statement, - [63821] = 3, + ACTIONS(4620), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [63778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(355), 1, - sym_parenthesized_expression, - [63831] = 3, - ACTIONS(3515), 1, + ACTIONS(4802), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [63786] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(4805), 1, aux_sym_preproc_include_token2, - ACTIONS(4804), 1, + ACTIONS(4807), 1, sym_preproc_arg, - [63841] = 3, + [63796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 1, + anon_sym_LPAREN2, + STATE(1736), 1, + sym_parenthesized_expression, + [63806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(378), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_compound_statement, + [63816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [63824] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(133), 1, anon_sym_LBRACE, - STATE(81), 1, + STATE(84), 1, sym_compound_statement, - [63851] = 3, + [63834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4811), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [63842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 1, + sym_identifier, + STATE(1694), 1, + sym_attribute, + [63852] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(133), 1, anon_sym_LBRACE, - STATE(104), 1, + STATE(100), 1, sym_compound_statement, - [63861] = 3, - ACTIONS(3515), 1, + [63862] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4815), 1, aux_sym_preproc_include_token2, - ACTIONS(4808), 1, + ACTIONS(4817), 1, sym_preproc_arg, - [63871] = 3, - ACTIONS(3515), 1, + [63872] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4810), 1, + ACTIONS(4819), 1, aux_sym_preproc_include_token2, - ACTIONS(4812), 1, + ACTIONS(4821), 1, sym_preproc_arg, - [63881] = 3, - ACTIONS(3515), 1, + [63882] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, - aux_sym_preproc_include_token2, - ACTIONS(4816), 1, - sym_preproc_arg, - [63891] = 3, - ACTIONS(3515), 1, + ACTIONS(430), 1, + anon_sym_LBRACE, + STATE(202), 1, + sym_compound_statement, + [63892] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4818), 1, - aux_sym_preproc_include_token2, - ACTIONS(4820), 1, - sym_preproc_arg, - [63901] = 3, + ACTIONS(4823), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [63900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(378), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(179), 1, sym_compound_statement, - [63911] = 3, - ACTIONS(3515), 1, + [63910] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - aux_sym_preproc_include_token2, - ACTIONS(4824), 1, - sym_preproc_arg, - [63921] = 3, - ACTIONS(3515), 1, + ACTIONS(430), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_compound_statement, + [63920] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(4825), 1, aux_sym_preproc_include_token2, - ACTIONS(4828), 1, + ACTIONS(4827), 1, sym_preproc_arg, - [63931] = 2, + [63930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63939] = 2, + ACTIONS(4776), 1, + anon_sym_LPAREN2, + STATE(349), 1, + sym_parenthesized_expression, + [63940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(3291), 2, anon_sym_COMMA, anon_sym_RBRACE, - [63947] = 3, + [63948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LPAREN2, - STATE(1849), 1, + STATE(1781), 1, sym_argument_list, - [63957] = 3, + [63958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1959), 1, + STATE(1906), 1, sym_parenthesized_expression, - [63967] = 3, - ACTIONS(3515), 1, + [63968] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4829), 1, aux_sym_preproc_include_token2, - ACTIONS(4832), 1, + ACTIONS(4831), 1, sym_preproc_arg, - [63977] = 3, - ACTIONS(3515), 1, + [63978] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(4833), 1, + sym_identifier, + ACTIONS(4835), 1, + anon_sym_LPAREN2, + [63988] = 3, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4837), 1, aux_sym_preproc_include_token2, - ACTIONS(4836), 1, + ACTIONS(4839), 1, sym_preproc_arg, - [63987] = 3, + [63998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 1, + ACTIONS(3806), 1, + anon_sym_RBRACE, + ACTIONS(4841), 1, + anon_sym_COMMA, + [64008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 1, sym_identifier, - STATE(1662), 1, + STATE(1574), 1, sym_attribute, - [63997] = 3, + [64018] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4776), 1, anon_sym_LPAREN2, - STATE(350), 1, + STATE(343), 1, sym_parenthesized_expression, - [64007] = 3, + [64028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1749), 1, + STATE(1708), 1, sym_parenthesized_expression, - [64017] = 3, + [64038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(351), 1, - sym_parenthesized_expression, - [64027] = 3, - ACTIONS(3515), 1, + ACTIONS(4813), 1, + sym_identifier, + STATE(1585), 1, + sym_attribute, + [64048] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4843), 1, aux_sym_preproc_include_token2, - ACTIONS(4840), 1, + ACTIONS(4845), 1, sym_preproc_arg, - [64037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(368), 1, - sym_parenthesized_expression, - [64047] = 3, + [64058] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(1546), 1, + STATE(1548), 1, sym_compound_statement, - [64057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(372), 1, - sym_parenthesized_expression, - [64067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4842), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - sym_identifier, - STATE(1730), 1, - sym_attribute, - [64085] = 2, + [64068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [64093] = 2, - ACTIONS(3), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym_compound_statement, + [64078] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4705), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64101] = 3, - ACTIONS(3515), 1, + ACTIONS(4847), 1, + aux_sym_preproc_include_token2, + ACTIONS(4849), 1, + sym_preproc_arg, + [64088] = 3, + ACTIONS(3446), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(4851), 1, aux_sym_preproc_include_token2, - ACTIONS(4846), 1, + ACTIONS(4853), 1, sym_preproc_arg, - [64111] = 3, + [64098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(378), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - STATE(176), 1, + STATE(153), 1, sym_compound_statement, - [64121] = 2, + [64108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64129] = 3, + ACTIONS(4800), 1, + anon_sym_LPAREN2, + STATE(1857), 1, + sym_parenthesized_expression, + [64118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, - sym_identifier, - ACTIONS(4852), 1, - anon_sym_LPAREN2, - [64139] = 3, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_compound_statement, + [64128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1930), 1, + STATE(1737), 1, sym_parenthesized_expression, - [64149] = 3, + [64138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4855), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [64146] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4776), 1, anon_sym_LPAREN2, - STATE(334), 1, + STATE(316), 1, sym_parenthesized_expression, - [64159] = 3, + [64156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1732), 1, - sym_parenthesized_expression, - [64169] = 3, + ACTIONS(4841), 1, + anon_sym_COMMA, + ACTIONS(4857), 1, + anon_sym_RBRACE, + [64166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1701), 1, - sym_parenthesized_expression, - [64179] = 3, + ACTIONS(4859), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [64174] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(378), 1, anon_sym_LBRACE, - STATE(207), 1, + STATE(251), 1, sym_compound_statement, - [64189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4264), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [64197] = 3, + [64184] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(251), 1, sym_compound_statement, - [64207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(328), 1, - sym_parenthesized_expression, - [64217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4749), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64225] = 3, + [64194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 1, + ACTIONS(4813), 1, sym_identifier, - STATE(1581), 1, + STATE(1570), 1, sym_attribute, - [64235] = 3, + [64204] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4776), 1, anon_sym_LPAREN2, - STATE(363), 1, + STATE(357), 1, sym_parenthesized_expression, - [64245] = 3, + [64214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1757), 1, + STATE(1747), 1, sym_parenthesized_expression, - [64255] = 3, + [64224] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4776), 1, anon_sym_LPAREN2, - STATE(364), 1, + STATE(358), 1, sym_parenthesized_expression, - [64265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4854), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(378), 1, - anon_sym_LBRACE, - STATE(173), 1, - sym_compound_statement, - [64283] = 3, + [64234] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1550), 1, sym_compound_statement, - [64293] = 3, + [64244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(4861), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4863), 1, anon_sym_LPAREN2, - [64303] = 3, + [64254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1944), 1, - sym_parenthesized_expression, - [64313] = 3, + ACTIONS(4252), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [64262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1767), 1, + STATE(1883), 1, sym_parenthesized_expression, - [64323] = 3, + [64272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1698), 1, + STATE(1760), 1, sym_parenthesized_expression, - [64333] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4861), 1, - aux_sym_preproc_include_token2, - ACTIONS(4863), 1, - sym_preproc_arg, - [64343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [64351] = 3, + [64282] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(133), 1, anon_sym_LBRACE, - STATE(116), 1, + STATE(86), 1, sym_compound_statement, - [64361] = 3, + [64292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_compound_statement, - [64371] = 3, + ACTIONS(4745), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [64300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 1, + anon_sym_LPAREN2, + STATE(1690), 1, + sym_parenthesized_expression, + [64310] = 3, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4865), 1, + aux_sym_preproc_include_token2, + ACTIONS(4867), 1, + sym_preproc_arg, + [64320] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(220), 1, + STATE(1543), 1, sym_compound_statement, - [64381] = 3, + [64330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1990), 1, + STATE(1955), 1, sym_parenthesized_expression, - [64391] = 2, + [64340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 2, + ACTIONS(4800), 1, + anon_sym_LPAREN2, + STATE(1703), 1, + sym_parenthesized_expression, + [64350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [64399] = 3, + anon_sym_SEMI, + [64358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4776), 1, anon_sym_LPAREN2, - STATE(1705), 1, + STATE(362), 1, sym_parenthesized_expression, - [64409] = 3, + [64368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_LPAREN2, - STATE(1710), 1, + STATE(1709), 1, sym_parenthesized_expression, - [64419] = 3, - ACTIONS(3515), 1, + [64378] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - aux_sym_preproc_include_token2, - ACTIONS(4871), 1, - sym_preproc_arg, - [64429] = 3, + ACTIONS(4776), 1, + anon_sym_LPAREN2, + STATE(366), 1, + sym_parenthesized_expression, + [64388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [64396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [64404] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(207), 1, + STATE(241), 1, sym_compound_statement, - [64439] = 3, + [64414] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, STATE(1542), 1, sym_compound_statement, - [64449] = 3, + [64424] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(155), 1, + STATE(172), 1, sym_compound_statement, - [64459] = 3, + [64434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(4790), 1, - anon_sym_COMMA, - [64469] = 2, + ACTIONS(4869), 1, + sym_identifier, + ACTIONS(4871), 1, + anon_sym_RPAREN, + [64444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 2, + ACTIONS(4536), 2, anon_sym_COMMA, anon_sym_RPAREN, - [64477] = 2, + [64452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 2, + ACTIONS(4242), 2, anon_sym_COMMA, anon_sym_SEMI, - [64485] = 3, + [64460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_LPAREN2, + STATE(344), 1, + sym_parenthesized_expression, + [64470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4873), 1, + aux_sym_preproc_if_token2, + [64477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4875), 1, - sym_identifier, - ACTIONS(4877), 1, anon_sym_RPAREN, - [64495] = 2, + [64484] = 2, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4877), 1, + aux_sym_preproc_include_token2, + [64491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4222), 2, - anon_sym_COMMA, + ACTIONS(3273), 1, anon_sym_SEMI, - [64503] = 3, + [64498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - STATE(1841), 1, - sym_argument_list, - [64513] = 2, + ACTIONS(3303), 1, + anon_sym_RPAREN, + [64505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64521] = 2, + ACTIONS(3271), 1, + anon_sym_RPAREN, + [64512] = 2, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4879), 1, + aux_sym_preproc_include_token2, + [64519] = 2, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4596), 1, + aux_sym_preproc_include_token2, + [64526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4881), 1, - aux_sym_preproc_if_token2, - [64528] = 2, + anon_sym_RPAREN, + [64533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - aux_sym_preproc_if_token2, - [64535] = 2, + ACTIONS(3335), 1, + anon_sym_RPAREN, + [64540] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4883), 1, + anon_sym_RPAREN, + [64547] = 2, + ACTIONS(3446), 1, + sym_comment, ACTIONS(4885), 1, - aux_sym_preproc_if_token2, - [64542] = 2, + aux_sym_preproc_include_token2, + [64554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4887), 1, - anon_sym_LPAREN2, - [64549] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [64561] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4889), 1, - aux_sym_preproc_if_token2, - [64556] = 2, + aux_sym_preproc_include_token2, + [64568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4891), 1, - anon_sym_COLON, - [64563] = 2, + anon_sym_RPAREN, + [64575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4893), 1, - anon_sym_RBRACE, - [64570] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [64582] = 2, + ACTIONS(3191), 1, + aux_sym_preproc_include_token2, + ACTIONS(3446), 1, + sym_comment, + [64589] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4895), 1, - aux_sym_preproc_if_token2, - [64577] = 2, - ACTIONS(3515), 1, + aux_sym_preproc_include_token2, + [64596] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4897), 1, aux_sym_preproc_include_token2, - [64584] = 2, - ACTIONS(3515), 1, + [64603] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4899), 1, - aux_sym_preproc_include_token2, - [64591] = 2, + anon_sym_LPAREN2, + [64610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4901), 1, - sym_identifier, - [64598] = 2, - ACTIONS(3515), 1, + aux_sym_preproc_if_token2, + [64617] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4903), 1, - aux_sym_preproc_include_token2, - [64605] = 2, - ACTIONS(3515), 1, + aux_sym_preproc_if_token2, + [64624] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4905), 1, aux_sym_preproc_include_token2, - [64612] = 2, + [64631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4907), 1, - aux_sym_preproc_if_token2, - [64619] = 2, + sym_identifier, + [64638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4909), 1, - anon_sym_RPAREN, - [64626] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [64645] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4911), 1, - anon_sym_RPAREN, - [64633] = 2, + aux_sym_preproc_include_token2, + [64652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4913), 1, - anon_sym_SEMI, - [64640] = 2, + anon_sym_RPAREN, + [64659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4915), 1, - aux_sym_preproc_if_token2, - [64647] = 2, + sym_identifier, + [64666] = 2, + ACTIONS(3167), 1, + aux_sym_preproc_include_token2, + ACTIONS(3446), 1, + sym_comment, + [64673] = 2, + ACTIONS(3181), 1, + aux_sym_preproc_include_token2, + ACTIONS(3446), 1, + sym_comment, + [64680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4917), 1, - aux_sym_preproc_if_token2, - [64654] = 2, - ACTIONS(3515), 1, + sym_identifier, + [64687] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4919), 1, aux_sym_preproc_include_token2, - [64661] = 2, + [64694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, - anon_sym_SEMI, - [64668] = 2, + ACTIONS(4921), 1, + aux_sym_preproc_if_token2, + [64701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 1, - anon_sym_RPAREN, - [64675] = 2, + ACTIONS(3289), 1, + anon_sym_SEMI, + [64708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4923), 1, - aux_sym_preproc_if_token2, - [64682] = 2, + anon_sym_SEMI, + [64715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4162), 1, + anon_sym_COMMA, + [64722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4925), 1, - anon_sym_COLON, - [64689] = 2, + aux_sym_preproc_if_token2, + [64729] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3261), 1, + anon_sym_SEMI, + [64736] = 2, + ACTIONS(3446), 1, + sym_comment, ACTIONS(4927), 1, - sym_identifier, - [64696] = 2, - ACTIONS(3193), 1, aux_sym_preproc_include_token2, - ACTIONS(3515), 1, - sym_comment, - [64703] = 2, - ACTIONS(3), 1, + [64743] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4929), 1, - anon_sym_SEMI, - [64710] = 2, - ACTIONS(3203), 1, aux_sym_preproc_include_token2, - ACTIONS(3515), 1, + [64750] = 2, + ACTIONS(3), 1, sym_comment, - [64717] = 2, - ACTIONS(3515), 1, + ACTIONS(3305), 1, + anon_sym_SEMI, + [64757] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4931), 1, aux_sym_preproc_include_token2, - [64724] = 2, + [64764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_COLON, + [64771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4933), 1, - aux_sym_preproc_if_token2, - [64731] = 2, + sym_identifier, + [64778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4935), 1, - aux_sym_preproc_if_token2, - [64738] = 2, - ACTIONS(3515), 1, + sym_identifier, + [64785] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4937), 1, - aux_sym_preproc_include_token2, - [64745] = 2, + anon_sym_COMMA, + [64792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4939), 1, + anon_sym_RPAREN, + [64799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3301), 1, anon_sym_SEMI, - [64752] = 2, - ACTIONS(3515), 1, + [64806] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4941), 1, + sym_identifier, + [64813] = 2, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4604), 1, aux_sym_preproc_include_token2, - [64759] = 2, + [64820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_SEMI, + [64827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4943), 1, - anon_sym_COLON, - [64766] = 2, + anon_sym_SEMI, + [64834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, - anon_sym_STAR, - [64773] = 2, + sym_identifier, + [64841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4947), 1, - anon_sym_RPAREN, - [64780] = 2, - ACTIONS(3515), 1, + ts_builtin_sym_end, + [64848] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4949), 1, - aux_sym_preproc_include_token2, - [64787] = 2, + aux_sym_preproc_if_token2, + [64855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4951), 1, aux_sym_preproc_if_token2, - [64794] = 2, + [64862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3806), 1, + anon_sym_RBRACE, + [64869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4953), 1, anon_sym_SEMI, - [64801] = 2, + [64876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4955), 1, anon_sym_RPAREN, - [64808] = 2, - ACTIONS(3), 1, + [64883] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4957), 1, - anon_sym_RPAREN, - [64815] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4620), 1, aux_sym_preproc_include_token2, - [64822] = 2, + [64890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4959), 1, - aux_sym_preproc_if_token2, - [64829] = 2, - ACTIONS(3515), 1, + sym_primitive_type, + [64897] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4961), 1, - aux_sym_preproc_include_token2, - [64836] = 2, - ACTIONS(3515), 1, + aux_sym_preproc_if_token2, + [64904] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4963), 1, - aux_sym_preproc_include_token2, - [64843] = 2, + anon_sym_RBRACE, + [64911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4965), 1, - sym_identifier, - [64850] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4967), 1, - aux_sym_preproc_include_token2, - [64857] = 2, + aux_sym_preproc_if_token2, + [64918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 1, - anon_sym_RPAREN, - [64864] = 2, + ACTIONS(3315), 1, + anon_sym_COLON, + [64925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4971), 1, + ACTIONS(4967), 1, sym_identifier, - [64871] = 2, + [64932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 1, - sym_identifier, - [64878] = 2, + ACTIONS(3209), 1, + anon_sym_RBRACE, + [64939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(4969), 1, anon_sym_RPAREN, - [64885] = 2, - ACTIONS(2276), 1, + [64946] = 2, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4971), 1, aux_sym_preproc_include_token2, - ACTIONS(3515), 1, + [64953] = 2, + ACTIONS(3), 1, sym_comment, - [64892] = 2, + ACTIONS(4973), 1, + aux_sym_preproc_if_token2, + [64960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4975), 1, - anon_sym_COMMA, - [64899] = 2, + anon_sym_RPAREN, + [64967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4977), 1, aux_sym_preproc_if_token2, - [64906] = 2, - ACTIONS(3515), 1, + [64974] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4979), 1, - aux_sym_preproc_include_token2, - [64913] = 2, + sym_identifier, + [64981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4981), 1, aux_sym_preproc_if_token2, - [64920] = 2, + [64988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4983), 1, - anon_sym_RPAREN, - [64927] = 2, + sym_identifier, + [64995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4985), 1, - sym_identifier, - [64934] = 2, + aux_sym_preproc_if_token2, + [65002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_COLON, - [64941] = 2, + ACTIONS(3249), 1, + anon_sym_RPAREN, + [65009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4987), 1, aux_sym_preproc_if_token2, - [64948] = 2, + [65016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4989), 1, - aux_sym_preproc_if_token2, - [64955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym_SEMI, - [64962] = 2, + sym_identifier, + [65023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4991), 1, - anon_sym_RPAREN, - [64969] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [65030] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(4993), 1, - anon_sym_RPAREN, - [64976] = 2, + aux_sym_preproc_include_token2, + [65037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, - anon_sym_RPAREN, - [64983] = 2, + ACTIONS(4995), 1, + anon_sym_LPAREN2, + [65044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4995), 1, - anon_sym_STAR, - [64990] = 2, + ACTIONS(3311), 1, + anon_sym_SEMI, + [65051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4997), 1, - anon_sym_while, - [64997] = 2, + aux_sym_preproc_if_token2, + [65058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_SEMI, + [65065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4999), 1, - anon_sym_LPAREN2, - [65004] = 2, - ACTIONS(3515), 1, + anon_sym_SEMI, + [65072] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5001), 1, - aux_sym_preproc_include_token2, - [65011] = 2, + aux_sym_preproc_if_token2, + [65079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5003), 1, - anon_sym_RPAREN, - [65018] = 2, + sym_identifier, + [65086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5005), 1, - aux_sym_preproc_if_token2, - [65025] = 2, + anon_sym_SEMI, + [65093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5007), 1, - anon_sym_COLON, - [65032] = 2, + anon_sym_RPAREN, + [65100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5009), 1, anon_sym_SEMI, - [65039] = 2, + [65107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5011), 1, - anon_sym_RPAREN, - [65046] = 2, + anon_sym_SEMI, + [65114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5013), 1, - anon_sym_COLON, - [65053] = 2, + sym_identifier, + [65121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5015), 1, - anon_sym_SEMI, - [65060] = 2, + aux_sym_preproc_if_token2, + [65128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5017), 1, - sym_identifier, - [65067] = 2, + anon_sym_RPAREN, + [65135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5019), 1, - anon_sym_LPAREN2, - [65074] = 2, + anon_sym_RPAREN, + [65142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5021), 1, - anon_sym_SEMI, - [65081] = 2, + aux_sym_preproc_if_token2, + [65149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5023), 1, sym_identifier, - [65088] = 2, + [65156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5025), 1, - anon_sym_RPAREN, - [65095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3307), 1, - anon_sym_RPAREN, - [65102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3281), 1, anon_sym_SEMI, - [65109] = 2, + [65163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5027), 1, anon_sym_RBRACE, - [65116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_RPAREN, - [65123] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4700), 1, - aux_sym_preproc_include_token2, - [65130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4792), 1, - anon_sym_RBRACE, - [65137] = 2, + [65170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5029), 1, - anon_sym_SEMI, - [65144] = 2, + aux_sym_preproc_if_token2, + [65177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5031), 1, - anon_sym_LPAREN2, - [65151] = 2, + anon_sym_SEMI, + [65184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5033), 1, - aux_sym_preproc_if_token2, - [65158] = 2, + anon_sym_SEMI, + [65191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5035), 1, - anon_sym_RBRACE, - [65165] = 2, + anon_sym_SEMI, + [65198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, - sym_identifier, - [65172] = 2, - ACTIONS(2260), 1, - aux_sym_preproc_include_token2, - ACTIONS(3515), 1, + ACTIONS(3299), 1, + anon_sym_COLON, + [65205] = 2, + ACTIONS(3), 1, sym_comment, - [65179] = 2, + ACTIONS(5037), 1, + aux_sym_preproc_if_token2, + [65212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5039), 1, - sym_identifier, - [65186] = 2, + anon_sym_SEMI, + [65219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5041), 1, - aux_sym_preproc_if_token2, - [65193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 1, - anon_sym_SEMI, - [65200] = 2, + anon_sym_RBRACE, + [65226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5043), 1, - sym_identifier, - [65207] = 2, + anon_sym_STAR, + [65233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5045), 1, - anon_sym_SEMI, - [65214] = 2, - ACTIONS(3), 1, + sym_identifier, + [65240] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(5047), 1, - anon_sym_RPAREN, - [65221] = 2, + aux_sym_preproc_include_token2, + [65247] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5049), 1, - anon_sym_RPAREN, - [65228] = 2, + anon_sym_SEMI, + [65254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5051), 1, - aux_sym_preproc_if_token2, - [65235] = 2, + sym_identifier, + [65261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5053), 1, - sym_identifier, - [65242] = 2, + aux_sym_preproc_if_token2, + [65268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5055), 1, anon_sym_COLON, - [65249] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4528), 1, - aux_sym_preproc_include_token2, - [65256] = 2, + [65275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5057), 1, - anon_sym_RPAREN, - [65263] = 2, - ACTIONS(3515), 1, + anon_sym_LPAREN2, + [65282] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5059), 1, - aux_sym_preproc_include_token2, - [65270] = 2, - ACTIONS(3515), 1, + anon_sym_SEMI, + [65289] = 2, + ACTIONS(3446), 1, sym_comment, - ACTIONS(5061), 1, + ACTIONS(4508), 1, aux_sym_preproc_include_token2, - [65277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_COLON, - [65284] = 2, + [65296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3339), 1, anon_sym_RPAREN, - [65291] = 2, + [65303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, - anon_sym_RBRACE, - [65298] = 2, + ACTIONS(5061), 1, + sym_primitive_type, + [65310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5063), 1, - anon_sym_SEMI, - [65305] = 2, + anon_sym_RPAREN, + [65317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5065), 1, - aux_sym_preproc_if_token2, - [65312] = 2, + anon_sym_while, + [65324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4857), 1, + anon_sym_RBRACE, + [65331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5067), 1, - anon_sym_RPAREN, - [65319] = 2, + sym_identifier, + [65338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5069), 1, - sym_identifier, - [65326] = 2, + aux_sym_preproc_if_token2, + [65345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5071), 1, - sym_identifier, - [65333] = 2, + aux_sym_preproc_if_token2, + [65352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5073), 1, - aux_sym_preproc_if_token2, - [65340] = 2, + sym_identifier, + [65359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5075), 1, - anon_sym_LPAREN2, - [65347] = 2, + aux_sym_preproc_if_token2, + [65366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5077), 1, aux_sym_preproc_if_token2, - [65354] = 2, + [65373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5079), 1, - aux_sym_preproc_if_token2, - [65361] = 2, + anon_sym_RPAREN, + [65380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5081), 1, - sym_identifier, - [65368] = 2, + anon_sym_SEMI, + [65387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5083), 1, - aux_sym_preproc_if_token2, - [65375] = 2, + anon_sym_LPAREN2, + [65394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5085), 1, - aux_sym_preproc_if_token2, - [65382] = 2, - ACTIONS(3515), 1, + anon_sym_LPAREN2, + [65401] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5087), 1, - aux_sym_preproc_include_token2, - [65389] = 2, + anon_sym_STAR, + [65408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 1, - aux_sym_preproc_if_token2, - [65396] = 2, + ACTIONS(3267), 1, + anon_sym_RPAREN, + [65415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, - anon_sym_COMMA, - [65403] = 2, + ACTIONS(5089), 1, + sym_identifier, + [65422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5091), 1, - sym_primitive_type, - [65410] = 2, + sym_identifier, + [65429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 1, + ACTIONS(3307), 1, anon_sym_SEMI, - [65417] = 2, + [65436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 1, + ACTIONS(5093), 1, aux_sym_preproc_if_token2, - [65424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5097), 1, - sym_identifier, - [65431] = 2, + [65443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, - anon_sym_COMMA, - [65438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3313), 1, + ACTIONS(5095), 1, anon_sym_SEMI, - [65445] = 2, + [65450] = 2, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(5097), 1, + aux_sym_preproc_include_token2, + [65457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5099), 1, aux_sym_preproc_if_token2, - [65452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3289), 1, - anon_sym_SEMI, - [65459] = 2, + [65464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5101), 1, - anon_sym_SEMI, - [65466] = 2, + aux_sym_preproc_if_token2, + [65471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5103), 1, anon_sym_SEMI, - [65473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3311), 1, - anon_sym_COLON, - [65480] = 2, + [65478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5105), 1, - anon_sym_RBRACE, - [65487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3319), 1, - anon_sym_SEMI, - [65494] = 2, + sym_identifier, + [65485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5107), 1, - sym_identifier, - [65501] = 2, + anon_sym_LPAREN2, + [65492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5109), 1, - sym_identifier, - [65508] = 2, + aux_sym_preproc_if_token2, + [65499] = 2, + ACTIONS(2258), 1, + aux_sym_preproc_include_token2, + ACTIONS(3446), 1, + sym_comment, + [65506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5111), 1, - sym_identifier, - [65515] = 2, + aux_sym_preproc_if_token2, + [65513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5113), 1, aux_sym_preproc_if_token2, - [65522] = 2, + [65520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5115), 1, - anon_sym_SEMI, - [65529] = 2, + aux_sym_preproc_if_token2, + [65527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5117), 1, aux_sym_preproc_if_token2, - [65536] = 2, + [65534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5119), 1, - sym_identifier, - [65543] = 2, + anon_sym_COLON, + [65541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5121), 1, - anon_sym_SEMI, - [65550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3359), 1, - anon_sym_RPAREN, - [65557] = 2, + anon_sym_STAR, + [65548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5123), 1, - sym_identifier, - [65564] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5125), 1, aux_sym_preproc_if_token2, - [65571] = 2, + [65555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(5125), 1, anon_sym_RPAREN, - [65578] = 2, - ACTIONS(3), 1, + [65562] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(5127), 1, - aux_sym_preproc_if_token2, - [65585] = 2, + aux_sym_preproc_include_token2, + [65569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5129), 1, - aux_sym_preproc_if_token2, - [65592] = 2, + sym_identifier, + [65576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5131), 1, - anon_sym_RPAREN, - [65599] = 2, + aux_sym_preproc_if_token2, + [65583] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5133), 1, - anon_sym_SEMI, - [65606] = 2, + anon_sym_RPAREN, + [65590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5135), 1, - anon_sym_SEMI, - [65613] = 2, + aux_sym_preproc_if_token2, + [65597] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5137), 1, sym_identifier, - [65620] = 2, + [65604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5139), 1, - sym_identifier, - [65627] = 2, + anon_sym_RPAREN, + [65611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5141), 1, - anon_sym_SEMI, - [65634] = 2, + anon_sym_RPAREN, + [65618] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5143), 1, - aux_sym_preproc_if_token2, - [65641] = 2, + anon_sym_RBRACE, + [65625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5145), 1, - sym_identifier, - [65648] = 2, + aux_sym_preproc_if_token2, + [65632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5147), 1, aux_sym_preproc_if_token2, - [65655] = 2, + [65639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5149), 1, anon_sym_RPAREN, - [65662] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3361), 1, - anon_sym_RPAREN, - [65669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 1, - anon_sym_SEMI, - [65676] = 2, + [65646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5151), 1, sym_identifier, - [65683] = 2, + [65653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5153), 1, - anon_sym_SEMI, - [65690] = 2, - ACTIONS(3189), 1, - aux_sym_preproc_include_token2, - ACTIONS(3515), 1, + sym_identifier, + [65660] = 2, + ACTIONS(3), 1, sym_comment, - [65697] = 2, + ACTIONS(4841), 1, + anon_sym_COMMA, + [65667] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5155), 1, - anon_sym_RBRACK, - [65704] = 2, + anon_sym_COLON, + [65674] = 2, + ACTIONS(3195), 1, + aux_sym_preproc_include_token2, + ACTIONS(3446), 1, + sym_comment, + [65681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5157), 1, - anon_sym_SEMI, - [65711] = 2, + anon_sym_RPAREN, + [65688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5159), 1, sym_identifier, - [65718] = 2, + [65695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3309), 1, + anon_sym_SEMI, + [65702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 1, + anon_sym_RPAREN, + [65709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5161), 1, - sym_identifier, - [65725] = 2, + anon_sym_COLON, + [65716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5163), 1, - aux_sym_preproc_if_token2, - [65732] = 2, - ACTIONS(3515), 1, + anon_sym_SEMI, + [65723] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5165), 1, + anon_sym_LPAREN2, + [65730] = 2, + ACTIONS(2294), 1, aux_sym_preproc_include_token2, - [65739] = 2, - ACTIONS(3), 1, + ACTIONS(3446), 1, sym_comment, - ACTIONS(5167), 1, - anon_sym_RBRACE, - [65746] = 2, + [65737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, - anon_sym_SEMI, - [65753] = 2, + ACTIONS(5167), 1, + aux_sym_preproc_if_token2, + [65744] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5169), 1, - sym_identifier, - [65760] = 2, + aux_sym_preproc_if_token2, + [65751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5171), 1, - anon_sym_LPAREN2, - [65767] = 2, + aux_sym_preproc_if_token2, + [65758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5173), 1, - anon_sym_STAR, - [65774] = 2, + anon_sym_SEMI, + [65765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5175), 1, - aux_sym_preproc_if_token2, - [65781] = 2, - ACTIONS(3515), 1, + sym_identifier, + [65772] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5177), 1, - aux_sym_preproc_include_token2, - [65788] = 2, + anon_sym_SEMI, + [65779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 1, - sym_identifier, - [65795] = 2, + ACTIONS(3277), 1, + anon_sym_RPAREN, + [65786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - anon_sym_RPAREN, - [65802] = 2, + ACTIONS(5179), 1, + anon_sym_SEMI, + [65793] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5181), 1, - aux_sym_preproc_if_token2, - [65809] = 2, + anon_sym_COLON, + [65800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, + ACTIONS(3297), 1, anon_sym_SEMI, - [65816] = 2, + [65807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 1, + sym_identifier, + [65814] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5185), 1, - sym_primitive_type, - [65823] = 2, + anon_sym_COLON, + [65821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5187), 1, - anon_sym_RPAREN, - [65830] = 2, - ACTIONS(3), 1, + sym_identifier, + [65828] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(5189), 1, - aux_sym_preproc_if_token2, - [65837] = 2, + aux_sym_preproc_include_token2, + [65835] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5191), 1, - anon_sym_LPAREN2, - [65844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3325), 1, - anon_sym_SEMI, - [65851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3297), 1, - anon_sym_SEMI, - [65858] = 2, + sym_identifier, + [65842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5193), 1, sym_identifier, - [65865] = 2, + [65849] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5195), 1, - anon_sym_STAR, - [65872] = 2, + anon_sym_SEMI, + [65856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5197), 1, - anon_sym_RPAREN, - [65879] = 2, + sym_identifier, + [65863] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5199), 1, - sym_identifier, - [65886] = 2, + aux_sym_preproc_if_token2, + [65870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5201), 1, - sym_identifier, - [65893] = 2, + anon_sym_RBRACE, + [65877] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5203), 1, - sym_identifier, - [65900] = 2, + aux_sym_preproc_if_token2, + [65884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5205), 1, - aux_sym_preproc_if_token2, - [65907] = 2, + anon_sym_LPAREN2, + [65891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, - anon_sym_RPAREN, - [65914] = 2, + ACTIONS(5207), 1, + anon_sym_LPAREN2, + [65898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3279), 1, - anon_sym_SEMI, - [65921] = 2, + anon_sym_RPAREN, + [65905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5207), 1, + ACTIONS(5209), 1, anon_sym_LPAREN2, - [65928] = 2, + [65912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, - aux_sym_preproc_if_token2, - [65935] = 2, + ACTIONS(3285), 1, + anon_sym_RPAREN, + [65919] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5211), 1, - anon_sym_LPAREN2, - [65942] = 2, + sym_identifier, + [65926] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5213), 1, - anon_sym_LPAREN2, - [65949] = 2, + anon_sym_RPAREN, + [65933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_COLON, - [65956] = 2, + ACTIONS(5215), 1, + anon_sym_SEMI, + [65940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 1, - aux_sym_preproc_if_token2, - [65963] = 2, + ACTIONS(3275), 1, + anon_sym_SEMI, + [65947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5217), 1, - ts_builtin_sym_end, - [65970] = 2, + aux_sym_preproc_if_token2, + [65954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5219), 1, - anon_sym_RBRACK, - [65977] = 2, + aux_sym_preproc_if_token2, + [65961] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5221), 1, + anon_sym_while, + [65968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 1, anon_sym_RPAREN, - [65984] = 2, + [65975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5223), 1, - anon_sym_SEMI, - [65991] = 2, + aux_sym_preproc_if_token2, + [65982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5225), 1, - anon_sym_LPAREN2, - [65998] = 2, + anon_sym_SEMI, + [65989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5227), 1, - aux_sym_preproc_if_token2, - [66005] = 2, + anon_sym_STAR, + [65996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5229), 1, - aux_sym_preproc_if_token2, - [66012] = 2, + sym_identifier, + [66003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5231), 1, - anon_sym_while, - [66019] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4770), 1, - aux_sym_preproc_include_token2, - [66026] = 2, + anon_sym_RBRACK, + [66010] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5233), 1, anon_sym_SEMI, - [66033] = 2, + [66017] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5235), 1, - anon_sym_LPAREN2, - [66040] = 2, + anon_sym_RBRACK, + [66024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3313), 1, + anon_sym_COLON, + [66031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5237), 1, anon_sym_STAR, - [66047] = 2, + [66038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5239), 1, - aux_sym_preproc_if_token2, - [66054] = 2, + anon_sym_SEMI, + [66045] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5241), 1, - anon_sym_RPAREN, - [66061] = 2, + anon_sym_LPAREN2, + [66052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5243), 1, - anon_sym_RPAREN, - [66068] = 2, + aux_sym_preproc_if_token2, + [66059] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5245), 1, sym_identifier, - [66075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3317), 1, - anon_sym_COLON, - [66082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3263), 1, - anon_sym_COLON, - [66089] = 2, + [66066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5247), 1, - anon_sym_RPAREN, - [66096] = 2, + anon_sym_while, + [66073] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5249), 1, - anon_sym_LPAREN2, - [66103] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [66080] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(5251), 1, - sym_identifier, - [66110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_RPAREN, - [66117] = 2, + aux_sym_preproc_include_token2, + [66087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5253), 1, - anon_sym_while, - [66124] = 2, + anon_sym_RPAREN, + [66094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 1, - anon_sym_RBRACE, - [66131] = 2, + ACTIONS(3295), 1, + anon_sym_COLON, + [66101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5255), 1, - aux_sym_preproc_if_token2, - [66138] = 2, - ACTIONS(3515), 1, + anon_sym_RPAREN, + [66108] = 2, + ACTIONS(3446), 1, sym_comment, ACTIONS(5257), 1, aux_sym_preproc_include_token2, - [66145] = 2, + [66115] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5259), 1, - anon_sym_RPAREN, - [66152] = 2, + anon_sym_RBRACE, + [66122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5261), 1, - anon_sym_SEMI, - [66159] = 2, + anon_sym_while, + [66129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5263), 1, - aux_sym_preproc_if_token2, - [66166] = 2, + anon_sym_COLON, + [66136] = 2, + ACTIONS(3446), 1, + sym_comment, + ACTIONS(4760), 1, + aux_sym_preproc_include_token2, + [66143] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5265), 1, - anon_sym_RBRACE, - [66173] = 2, + aux_sym_preproc_if_token2, + [66150] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5267), 1, - anon_sym_while, - [66180] = 2, + aux_sym_preproc_if_token2, + [66157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5269), 1, - aux_sym_preproc_if_token2, - [66187] = 2, - ACTIONS(3199), 1, - aux_sym_preproc_include_token2, - ACTIONS(3515), 1, - sym_comment, - [66194] = 2, + anon_sym_LPAREN2, + [66164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5271), 1, - anon_sym_SEMI, - [66201] = 2, + aux_sym_preproc_if_token2, + [66171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5273), 1, aux_sym_preproc_if_token2, - [66208] = 2, + [66178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5275), 1, anon_sym_LPAREN2, - [66215] = 2, + [66185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5277), 1, - aux_sym_preproc_if_token2, - [66222] = 2, + anon_sym_LPAREN2, + [66192] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5279), 1, - anon_sym_SEMI, - [66229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5281), 1, anon_sym_LPAREN2, - [66236] = 2, + [66199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5283), 1, + ACTIONS(3221), 1, anon_sym_COLON, - [66243] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(5285), 1, - aux_sym_preproc_include_token2, - [66250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5287), 1, - anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(463)] = 0, - [SMALL_STATE(464)] = 113, - [SMALL_STATE(465)] = 226, - [SMALL_STATE(466)] = 339, - [SMALL_STATE(467)] = 452, - [SMALL_STATE(468)] = 565, - [SMALL_STATE(469)] = 678, - [SMALL_STATE(470)] = 791, - [SMALL_STATE(471)] = 904, - [SMALL_STATE(472)] = 1017, - [SMALL_STATE(473)] = 1130, - [SMALL_STATE(474)] = 1243, - [SMALL_STATE(475)] = 1356, - [SMALL_STATE(476)] = 1469, - [SMALL_STATE(477)] = 1582, - [SMALL_STATE(478)] = 1695, - [SMALL_STATE(479)] = 1808, - [SMALL_STATE(480)] = 1921, - [SMALL_STATE(481)] = 2034, - [SMALL_STATE(482)] = 2147, - [SMALL_STATE(483)] = 2260, - [SMALL_STATE(484)] = 2373, - [SMALL_STATE(485)] = 2486, - [SMALL_STATE(486)] = 2599, - [SMALL_STATE(487)] = 2712, - [SMALL_STATE(488)] = 2825, - [SMALL_STATE(489)] = 2938, - [SMALL_STATE(490)] = 3051, - [SMALL_STATE(491)] = 3164, - [SMALL_STATE(492)] = 3277, - [SMALL_STATE(493)] = 3387, - [SMALL_STATE(494)] = 3497, - [SMALL_STATE(495)] = 3607, - [SMALL_STATE(496)] = 3717, - [SMALL_STATE(497)] = 3827, - [SMALL_STATE(498)] = 3937, - [SMALL_STATE(499)] = 4047, - [SMALL_STATE(500)] = 4157, - [SMALL_STATE(501)] = 4267, - [SMALL_STATE(502)] = 4377, - [SMALL_STATE(503)] = 4487, - [SMALL_STATE(504)] = 4597, - [SMALL_STATE(505)] = 4707, - [SMALL_STATE(506)] = 4817, - [SMALL_STATE(507)] = 4927, - [SMALL_STATE(508)] = 5034, - [SMALL_STATE(509)] = 5141, - [SMALL_STATE(510)] = 5248, - [SMALL_STATE(511)] = 5355, - [SMALL_STATE(512)] = 5462, - [SMALL_STATE(513)] = 5569, - [SMALL_STATE(514)] = 5676, - [SMALL_STATE(515)] = 5783, - [SMALL_STATE(516)] = 5890, - [SMALL_STATE(517)] = 5997, - [SMALL_STATE(518)] = 6104, - [SMALL_STATE(519)] = 6211, - [SMALL_STATE(520)] = 6318, - [SMALL_STATE(521)] = 6425, - [SMALL_STATE(522)] = 6532, - [SMALL_STATE(523)] = 6639, - [SMALL_STATE(524)] = 6746, - [SMALL_STATE(525)] = 6853, - [SMALL_STATE(526)] = 6960, - [SMALL_STATE(527)] = 7067, - [SMALL_STATE(528)] = 7174, - [SMALL_STATE(529)] = 7281, - [SMALL_STATE(530)] = 7388, - [SMALL_STATE(531)] = 7495, - [SMALL_STATE(532)] = 7602, - [SMALL_STATE(533)] = 7709, - [SMALL_STATE(534)] = 7816, - [SMALL_STATE(535)] = 7923, - [SMALL_STATE(536)] = 8030, - [SMALL_STATE(537)] = 8137, - [SMALL_STATE(538)] = 8244, - [SMALL_STATE(539)] = 8351, - [SMALL_STATE(540)] = 8458, - [SMALL_STATE(541)] = 8565, - [SMALL_STATE(542)] = 8672, - [SMALL_STATE(543)] = 8779, - [SMALL_STATE(544)] = 8886, - [SMALL_STATE(545)] = 8993, - [SMALL_STATE(546)] = 9100, - [SMALL_STATE(547)] = 9207, - [SMALL_STATE(548)] = 9314, - [SMALL_STATE(549)] = 9421, - [SMALL_STATE(550)] = 9528, - [SMALL_STATE(551)] = 9619, - [SMALL_STATE(552)] = 9726, - [SMALL_STATE(553)] = 9833, - [SMALL_STATE(554)] = 9940, - [SMALL_STATE(555)] = 10047, - [SMALL_STATE(556)] = 10154, - [SMALL_STATE(557)] = 10261, - [SMALL_STATE(558)] = 10368, - [SMALL_STATE(559)] = 10475, - [SMALL_STATE(560)] = 10582, - [SMALL_STATE(561)] = 10689, - [SMALL_STATE(562)] = 10796, - [SMALL_STATE(563)] = 10903, - [SMALL_STATE(564)] = 11010, - [SMALL_STATE(565)] = 11117, - [SMALL_STATE(566)] = 11224, - [SMALL_STATE(567)] = 11331, - [SMALL_STATE(568)] = 11438, - [SMALL_STATE(569)] = 11545, - [SMALL_STATE(570)] = 11652, - [SMALL_STATE(571)] = 11759, - [SMALL_STATE(572)] = 11866, - [SMALL_STATE(573)] = 11973, - [SMALL_STATE(574)] = 12080, - [SMALL_STATE(575)] = 12187, - [SMALL_STATE(576)] = 12294, - [SMALL_STATE(577)] = 12401, - [SMALL_STATE(578)] = 12508, - [SMALL_STATE(579)] = 12615, - [SMALL_STATE(580)] = 12722, - [SMALL_STATE(581)] = 12829, - [SMALL_STATE(582)] = 12936, - [SMALL_STATE(583)] = 13043, - [SMALL_STATE(584)] = 13150, - [SMALL_STATE(585)] = 13257, - [SMALL_STATE(586)] = 13364, - [SMALL_STATE(587)] = 13471, - [SMALL_STATE(588)] = 13578, - [SMALL_STATE(589)] = 13685, - [SMALL_STATE(590)] = 13792, - [SMALL_STATE(591)] = 13899, - [SMALL_STATE(592)] = 14006, - [SMALL_STATE(593)] = 14113, - [SMALL_STATE(594)] = 14220, - [SMALL_STATE(595)] = 14327, - [SMALL_STATE(596)] = 14434, - [SMALL_STATE(597)] = 14541, - [SMALL_STATE(598)] = 14648, - [SMALL_STATE(599)] = 14755, - [SMALL_STATE(600)] = 14862, - [SMALL_STATE(601)] = 14969, - [SMALL_STATE(602)] = 15076, - [SMALL_STATE(603)] = 15183, - [SMALL_STATE(604)] = 15290, - [SMALL_STATE(605)] = 15397, - [SMALL_STATE(606)] = 15504, - [SMALL_STATE(607)] = 15611, - [SMALL_STATE(608)] = 15718, - [SMALL_STATE(609)] = 15825, - [SMALL_STATE(610)] = 15932, - [SMALL_STATE(611)] = 16039, - [SMALL_STATE(612)] = 16146, - [SMALL_STATE(613)] = 16253, - [SMALL_STATE(614)] = 16360, - [SMALL_STATE(615)] = 16467, - [SMALL_STATE(616)] = 16574, - [SMALL_STATE(617)] = 16681, - [SMALL_STATE(618)] = 16788, - [SMALL_STATE(619)] = 16895, - [SMALL_STATE(620)] = 17002, - [SMALL_STATE(621)] = 17109, - [SMALL_STATE(622)] = 17216, - [SMALL_STATE(623)] = 17323, - [SMALL_STATE(624)] = 17430, - [SMALL_STATE(625)] = 17537, - [SMALL_STATE(626)] = 17644, - [SMALL_STATE(627)] = 17751, - [SMALL_STATE(628)] = 17858, - [SMALL_STATE(629)] = 17930, - [SMALL_STATE(630)] = 18002, - [SMALL_STATE(631)] = 18074, - [SMALL_STATE(632)] = 18143, - [SMALL_STATE(633)] = 18252, - [SMALL_STATE(634)] = 18359, - [SMALL_STATE(635)] = 18423, - [SMALL_STATE(636)] = 18487, - [SMALL_STATE(637)] = 18551, - [SMALL_STATE(638)] = 18615, - [SMALL_STATE(639)] = 18679, - [SMALL_STATE(640)] = 18743, - [SMALL_STATE(641)] = 18807, - [SMALL_STATE(642)] = 18871, - [SMALL_STATE(643)] = 18935, - [SMALL_STATE(644)] = 18999, - [SMALL_STATE(645)] = 19063, - [SMALL_STATE(646)] = 19127, - [SMALL_STATE(647)] = 19207, - [SMALL_STATE(648)] = 19308, - [SMALL_STATE(649)] = 19409, - [SMALL_STATE(650)] = 19510, - [SMALL_STATE(651)] = 19611, - [SMALL_STATE(652)] = 19712, - [SMALL_STATE(653)] = 19813, - [SMALL_STATE(654)] = 19914, - [SMALL_STATE(655)] = 20015, - [SMALL_STATE(656)] = 20116, - [SMALL_STATE(657)] = 20217, - [SMALL_STATE(658)] = 20318, - [SMALL_STATE(659)] = 20419, - [SMALL_STATE(660)] = 20520, - [SMALL_STATE(661)] = 20621, - [SMALL_STATE(662)] = 20722, - [SMALL_STATE(663)] = 20823, - [SMALL_STATE(664)] = 20923, - [SMALL_STATE(665)] = 21021, - [SMALL_STATE(666)] = 21119, - [SMALL_STATE(667)] = 21181, - [SMALL_STATE(668)] = 21252, - [SMALL_STATE(669)] = 21313, - [SMALL_STATE(670)] = 21374, - [SMALL_STATE(671)] = 21435, - [SMALL_STATE(672)] = 21495, - [SMALL_STATE(673)] = 21563, - [SMALL_STATE(674)] = 21629, - [SMALL_STATE(675)] = 21720, - [SMALL_STATE(676)] = 21811, - [SMALL_STATE(677)] = 21870, - [SMALL_STATE(678)] = 21929, - [SMALL_STATE(679)] = 21988, - [SMALL_STATE(680)] = 22047, - [SMALL_STATE(681)] = 22106, - [SMALL_STATE(682)] = 22165, - [SMALL_STATE(683)] = 22224, - [SMALL_STATE(684)] = 22315, - [SMALL_STATE(685)] = 22374, - [SMALL_STATE(686)] = 22433, - [SMALL_STATE(687)] = 22492, - [SMALL_STATE(688)] = 22551, - [SMALL_STATE(689)] = 22610, - [SMALL_STATE(690)] = 22669, - [SMALL_STATE(691)] = 22728, - [SMALL_STATE(692)] = 22819, - [SMALL_STATE(693)] = 22878, - [SMALL_STATE(694)] = 22937, - [SMALL_STATE(695)] = 23028, - [SMALL_STATE(696)] = 23119, - [SMALL_STATE(697)] = 23210, - [SMALL_STATE(698)] = 23301, - [SMALL_STATE(699)] = 23360, - [SMALL_STATE(700)] = 23418, - [SMALL_STATE(701)] = 23486, - [SMALL_STATE(702)] = 23544, - [SMALL_STATE(703)] = 23612, - [SMALL_STATE(704)] = 23670, - [SMALL_STATE(705)] = 23738, - [SMALL_STATE(706)] = 23806, - [SMALL_STATE(707)] = 23864, - [SMALL_STATE(708)] = 23932, - [SMALL_STATE(709)] = 23998, - [SMALL_STATE(710)] = 24056, - [SMALL_STATE(711)] = 24144, - [SMALL_STATE(712)] = 24209, - [SMALL_STATE(713)] = 24274, - [SMALL_STATE(714)] = 24347, - [SMALL_STATE(715)] = 24408, - [SMALL_STATE(716)] = 24465, - [SMALL_STATE(717)] = 24522, - [SMALL_STATE(718)] = 24587, - [SMALL_STATE(719)] = 24652, - [SMALL_STATE(720)] = 24717, - [SMALL_STATE(721)] = 24774, - [SMALL_STATE(722)] = 24839, - [SMALL_STATE(723)] = 24912, - [SMALL_STATE(724)] = 24977, - [SMALL_STATE(725)] = 25049, - [SMALL_STATE(726)] = 25121, - [SMALL_STATE(727)] = 25177, - [SMALL_STATE(728)] = 25249, - [SMALL_STATE(729)] = 25321, - [SMALL_STATE(730)] = 25377, - [SMALL_STATE(731)] = 25433, - [SMALL_STATE(732)] = 25492, - [SMALL_STATE(733)] = 25551, - [SMALL_STATE(734)] = 25610, - [SMALL_STATE(735)] = 25669, - [SMALL_STATE(736)] = 25728, - [SMALL_STATE(737)] = 25787, - [SMALL_STATE(738)] = 25846, - [SMALL_STATE(739)] = 25905, - [SMALL_STATE(740)] = 25964, - [SMALL_STATE(741)] = 26023, - [SMALL_STATE(742)] = 26082, - [SMALL_STATE(743)] = 26136, - [SMALL_STATE(744)] = 26190, - [SMALL_STATE(745)] = 26244, - [SMALL_STATE(746)] = 26302, - [SMALL_STATE(747)] = 26356, - [SMALL_STATE(748)] = 26414, - [SMALL_STATE(749)] = 26468, - [SMALL_STATE(750)] = 26528, - [SMALL_STATE(751)] = 26586, - [SMALL_STATE(752)] = 26644, - [SMALL_STATE(753)] = 26702, - [SMALL_STATE(754)] = 26760, - [SMALL_STATE(755)] = 26818, - [SMALL_STATE(756)] = 26876, - [SMALL_STATE(757)] = 26934, - [SMALL_STATE(758)] = 26988, - [SMALL_STATE(759)] = 27042, - [SMALL_STATE(760)] = 27096, - [SMALL_STATE(761)] = 27150, - [SMALL_STATE(762)] = 27204, - [SMALL_STATE(763)] = 27258, - [SMALL_STATE(764)] = 27312, - [SMALL_STATE(765)] = 27366, - [SMALL_STATE(766)] = 27420, - [SMALL_STATE(767)] = 27480, - [SMALL_STATE(768)] = 27534, - [SMALL_STATE(769)] = 27592, - [SMALL_STATE(770)] = 27646, - [SMALL_STATE(771)] = 27704, - [SMALL_STATE(772)] = 27762, - [SMALL_STATE(773)] = 27816, - [SMALL_STATE(774)] = 27870, - [SMALL_STATE(775)] = 27924, - [SMALL_STATE(776)] = 27978, - [SMALL_STATE(777)] = 28032, - [SMALL_STATE(778)] = 28086, - [SMALL_STATE(779)] = 28140, - [SMALL_STATE(780)] = 28194, - [SMALL_STATE(781)] = 28248, - [SMALL_STATE(782)] = 28302, - [SMALL_STATE(783)] = 28356, - [SMALL_STATE(784)] = 28447, - [SMALL_STATE(785)] = 28500, - [SMALL_STATE(786)] = 28553, - [SMALL_STATE(787)] = 28606, - [SMALL_STATE(788)] = 28659, - [SMALL_STATE(789)] = 28722, - [SMALL_STATE(790)] = 28775, - [SMALL_STATE(791)] = 28828, - [SMALL_STATE(792)] = 28881, - [SMALL_STATE(793)] = 28944, - [SMALL_STATE(794)] = 29015, - [SMALL_STATE(795)] = 29068, - [SMALL_STATE(796)] = 29121, - [SMALL_STATE(797)] = 29184, - [SMALL_STATE(798)] = 29275, - [SMALL_STATE(799)] = 29346, - [SMALL_STATE(800)] = 29409, - [SMALL_STATE(801)] = 29480, - [SMALL_STATE(802)] = 29543, - [SMALL_STATE(803)] = 29596, - [SMALL_STATE(804)] = 29649, - [SMALL_STATE(805)] = 29712, - [SMALL_STATE(806)] = 29765, - [SMALL_STATE(807)] = 29818, - [SMALL_STATE(808)] = 29871, - [SMALL_STATE(809)] = 29924, - [SMALL_STATE(810)] = 29977, - [SMALL_STATE(811)] = 30030, - [SMALL_STATE(812)] = 30083, - [SMALL_STATE(813)] = 30154, - [SMALL_STATE(814)] = 30220, - [SMALL_STATE(815)] = 30278, - [SMALL_STATE(816)] = 30352, - [SMALL_STATE(817)] = 30424, - [SMALL_STATE(818)] = 30510, - [SMALL_STATE(819)] = 30572, - [SMALL_STATE(820)] = 30656, - [SMALL_STATE(821)] = 30724, - [SMALL_STATE(822)] = 30788, - [SMALL_STATE(823)] = 30846, - [SMALL_STATE(824)] = 30932, - [SMALL_STATE(825)] = 30996, - [SMALL_STATE(826)] = 31078, - [SMALL_STATE(827)] = 31158, - [SMALL_STATE(828)] = 31234, - [SMALL_STATE(829)] = 31310, - [SMALL_STATE(830)] = 31384, - [SMALL_STATE(831)] = 31456, - [SMALL_STATE(832)] = 31524, - [SMALL_STATE(833)] = 31590, - [SMALL_STATE(834)] = 31676, - [SMALL_STATE(835)] = 31762, - [SMALL_STATE(836)] = 31846, - [SMALL_STATE(837)] = 31926, - [SMALL_STATE(838)] = 32008, - [SMALL_STATE(839)] = 32094, - [SMALL_STATE(840)] = 32172, - [SMALL_STATE(841)] = 32232, - [SMALL_STATE(842)] = 32318, - [SMALL_STATE(843)] = 32396, - [SMALL_STATE(844)] = 32451, - [SMALL_STATE(845)] = 32510, - [SMALL_STATE(846)] = 32565, - [SMALL_STATE(847)] = 32615, - [SMALL_STATE(848)] = 32701, - [SMALL_STATE(849)] = 32787, - [SMALL_STATE(850)] = 32837, - [SMALL_STATE(851)] = 32890, - [SMALL_STATE(852)] = 32939, - [SMALL_STATE(853)] = 32988, - [SMALL_STATE(854)] = 33041, - [SMALL_STATE(855)] = 33090, - [SMALL_STATE(856)] = 33139, - [SMALL_STATE(857)] = 33188, - [SMALL_STATE(858)] = 33237, - [SMALL_STATE(859)] = 33286, - [SMALL_STATE(860)] = 33335, - [SMALL_STATE(861)] = 33384, - [SMALL_STATE(862)] = 33433, - [SMALL_STATE(863)] = 33482, - [SMALL_STATE(864)] = 33531, - [SMALL_STATE(865)] = 33580, - [SMALL_STATE(866)] = 33629, - [SMALL_STATE(867)] = 33678, - [SMALL_STATE(868)] = 33727, - [SMALL_STATE(869)] = 33780, - [SMALL_STATE(870)] = 33833, - [SMALL_STATE(871)] = 33882, - [SMALL_STATE(872)] = 33931, - [SMALL_STATE(873)] = 33980, - [SMALL_STATE(874)] = 34029, - [SMALL_STATE(875)] = 34078, - [SMALL_STATE(876)] = 34127, - [SMALL_STATE(877)] = 34180, - [SMALL_STATE(878)] = 34229, - [SMALL_STATE(879)] = 34282, - [SMALL_STATE(880)] = 34335, - [SMALL_STATE(881)] = 34384, - [SMALL_STATE(882)] = 34433, - [SMALL_STATE(883)] = 34482, - [SMALL_STATE(884)] = 34531, - [SMALL_STATE(885)] = 34580, - [SMALL_STATE(886)] = 34629, - [SMALL_STATE(887)] = 34678, - [SMALL_STATE(888)] = 34727, - [SMALL_STATE(889)] = 34776, - [SMALL_STATE(890)] = 34825, - [SMALL_STATE(891)] = 34874, - [SMALL_STATE(892)] = 34923, - [SMALL_STATE(893)] = 34972, - [SMALL_STATE(894)] = 35049, - [SMALL_STATE(895)] = 35096, - [SMALL_STATE(896)] = 35155, - [SMALL_STATE(897)] = 35214, - [SMALL_STATE(898)] = 35273, - [SMALL_STATE(899)] = 35356, - [SMALL_STATE(900)] = 35417, - [SMALL_STATE(901)] = 35496, - [SMALL_STATE(902)] = 35573, - [SMALL_STATE(903)] = 35648, - [SMALL_STATE(904)] = 35721, - [SMALL_STATE(905)] = 35792, - [SMALL_STATE(906)] = 35861, - [SMALL_STATE(907)] = 35926, - [SMALL_STATE(908)] = 35989, - [SMALL_STATE(909)] = 36066, - [SMALL_STATE(910)] = 36149, - [SMALL_STATE(911)] = 36232, - [SMALL_STATE(912)] = 36313, - [SMALL_STATE(913)] = 36370, - [SMALL_STATE(914)] = 36429, - [SMALL_STATE(915)] = 36488, - [SMALL_STATE(916)] = 36547, - [SMALL_STATE(917)] = 36624, - [SMALL_STATE(918)] = 36701, - [SMALL_STATE(919)] = 36747, - [SMALL_STATE(920)] = 36793, - [SMALL_STATE(921)] = 36839, - [SMALL_STATE(922)] = 36885, - [SMALL_STATE(923)] = 36931, - [SMALL_STATE(924)] = 36987, - [SMALL_STATE(925)] = 37033, - [SMALL_STATE(926)] = 37079, - [SMALL_STATE(927)] = 37125, - [SMALL_STATE(928)] = 37171, - [SMALL_STATE(929)] = 37217, - [SMALL_STATE(930)] = 37263, - [SMALL_STATE(931)] = 37309, - [SMALL_STATE(932)] = 37355, - [SMALL_STATE(933)] = 37405, - [SMALL_STATE(934)] = 37459, - [SMALL_STATE(935)] = 37534, - [SMALL_STATE(936)] = 37585, - [SMALL_STATE(937)] = 37660, - [SMALL_STATE(938)] = 37704, - [SMALL_STATE(939)] = 37748, - [SMALL_STATE(940)] = 37792, - [SMALL_STATE(941)] = 37836, - [SMALL_STATE(942)] = 37880, - [SMALL_STATE(943)] = 37924, - [SMALL_STATE(944)] = 37968, - [SMALL_STATE(945)] = 38012, - [SMALL_STATE(946)] = 38056, - [SMALL_STATE(947)] = 38100, - [SMALL_STATE(948)] = 38144, - [SMALL_STATE(949)] = 38188, - [SMALL_STATE(950)] = 38232, - [SMALL_STATE(951)] = 38283, - [SMALL_STATE(952)] = 38356, - [SMALL_STATE(953)] = 38429, - [SMALL_STATE(954)] = 38499, - [SMALL_STATE(955)] = 38567, - [SMALL_STATE(956)] = 38635, - [SMALL_STATE(957)] = 38703, - [SMALL_STATE(958)] = 38773, - [SMALL_STATE(959)] = 38841, - [SMALL_STATE(960)] = 38909, - [SMALL_STATE(961)] = 38977, - [SMALL_STATE(962)] = 39045, - [SMALL_STATE(963)] = 39113, - [SMALL_STATE(964)] = 39181, - [SMALL_STATE(965)] = 39249, - [SMALL_STATE(966)] = 39317, - [SMALL_STATE(967)] = 39385, - [SMALL_STATE(968)] = 39448, - [SMALL_STATE(969)] = 39525, - [SMALL_STATE(970)] = 39600, - [SMALL_STATE(971)] = 39677, - [SMALL_STATE(972)] = 39732, - [SMALL_STATE(973)] = 39805, - [SMALL_STATE(974)] = 39876, - [SMALL_STATE(975)] = 39945, - [SMALL_STATE(976)] = 40012, - [SMALL_STATE(977)] = 40077, - [SMALL_STATE(978)] = 40140, - [SMALL_STATE(979)] = 40199, - [SMALL_STATE(980)] = 40256, - [SMALL_STATE(981)] = 40333, - [SMALL_STATE(982)] = 40410, - [SMALL_STATE(983)] = 40487, - [SMALL_STATE(984)] = 40542, - [SMALL_STATE(985)] = 40615, - [SMALL_STATE(986)] = 40686, - [SMALL_STATE(987)] = 40755, - [SMALL_STATE(988)] = 40830, - [SMALL_STATE(989)] = 40897, - [SMALL_STATE(990)] = 40962, - [SMALL_STATE(991)] = 41039, - [SMALL_STATE(992)] = 41098, - [SMALL_STATE(993)] = 41155, - [SMALL_STATE(994)] = 41232, - [SMALL_STATE(995)] = 41296, - [SMALL_STATE(996)] = 41360, - [SMALL_STATE(997)] = 41400, - [SMALL_STATE(998)] = 41464, - [SMALL_STATE(999)] = 41504, - [SMALL_STATE(1000)] = 41544, - [SMALL_STATE(1001)] = 41584, - [SMALL_STATE(1002)] = 41648, - [SMALL_STATE(1003)] = 41712, - [SMALL_STATE(1004)] = 41776, - [SMALL_STATE(1005)] = 41816, - [SMALL_STATE(1006)] = 41880, - [SMALL_STATE(1007)] = 41944, - [SMALL_STATE(1008)] = 42008, - [SMALL_STATE(1009)] = 42072, - [SMALL_STATE(1010)] = 42136, - [SMALL_STATE(1011)] = 42200, - [SMALL_STATE(1012)] = 42264, - [SMALL_STATE(1013)] = 42304, - [SMALL_STATE(1014)] = 42365, - [SMALL_STATE(1015)] = 42426, - [SMALL_STATE(1016)] = 42487, - [SMALL_STATE(1017)] = 42548, - [SMALL_STATE(1018)] = 42609, - [SMALL_STATE(1019)] = 42670, - [SMALL_STATE(1020)] = 42744, - [SMALL_STATE(1021)] = 42792, - [SMALL_STATE(1022)] = 42866, - [SMALL_STATE(1023)] = 42912, - [SMALL_STATE(1024)] = 42987, - [SMALL_STATE(1025)] = 43062, - [SMALL_STATE(1026)] = 43137, - [SMALL_STATE(1027)] = 43212, - [SMALL_STATE(1028)] = 43282, - [SMALL_STATE(1029)] = 43356, - [SMALL_STATE(1030)] = 43428, - [SMALL_STATE(1031)] = 43480, - [SMALL_STATE(1032)] = 43548, - [SMALL_STATE(1033)] = 43614, - [SMALL_STATE(1034)] = 43680, - [SMALL_STATE(1035)] = 43744, - [SMALL_STATE(1036)] = 43806, - [SMALL_STATE(1037)] = 43866, - [SMALL_STATE(1038)] = 43922, - [SMALL_STATE(1039)] = 43976, - [SMALL_STATE(1040)] = 44048, - [SMALL_STATE(1041)] = 44120, - [SMALL_STATE(1042)] = 44192, - [SMALL_STATE(1043)] = 44264, - [SMALL_STATE(1044)] = 44334, - [SMALL_STATE(1045)] = 44374, - [SMALL_STATE(1046)] = 44444, - [SMALL_STATE(1047)] = 44514, - [SMALL_STATE(1048)] = 44584, - [SMALL_STATE(1049)] = 44656, - [SMALL_STATE(1050)] = 44728, - [SMALL_STATE(1051)] = 44800, - [SMALL_STATE(1052)] = 44872, - [SMALL_STATE(1053)] = 44944, - [SMALL_STATE(1054)] = 45016, - [SMALL_STATE(1055)] = 45088, - [SMALL_STATE(1056)] = 45160, - [SMALL_STATE(1057)] = 45232, - [SMALL_STATE(1058)] = 45302, - [SMALL_STATE(1059)] = 45374, - [SMALL_STATE(1060)] = 45446, - [SMALL_STATE(1061)] = 45516, - [SMALL_STATE(1062)] = 45588, - [SMALL_STATE(1063)] = 45628, - [SMALL_STATE(1064)] = 45678, - [SMALL_STATE(1065)] = 45750, - [SMALL_STATE(1066)] = 45822, - [SMALL_STATE(1067)] = 45894, - [SMALL_STATE(1068)] = 45964, - [SMALL_STATE(1069)] = 46036, - [SMALL_STATE(1070)] = 46076, - [SMALL_STATE(1071)] = 46148, - [SMALL_STATE(1072)] = 46220, - [SMALL_STATE(1073)] = 46292, - [SMALL_STATE(1074)] = 46364, - [SMALL_STATE(1075)] = 46436, - [SMALL_STATE(1076)] = 46508, - [SMALL_STATE(1077)] = 46558, - [SMALL_STATE(1078)] = 46630, - [SMALL_STATE(1079)] = 46702, - [SMALL_STATE(1080)] = 46771, - [SMALL_STATE(1081)] = 46840, - [SMALL_STATE(1082)] = 46909, - [SMALL_STATE(1083)] = 46978, - [SMALL_STATE(1084)] = 47047, - [SMALL_STATE(1085)] = 47102, - [SMALL_STATE(1086)] = 47157, - [SMALL_STATE(1087)] = 47226, - [SMALL_STATE(1088)] = 47281, - [SMALL_STATE(1089)] = 47350, - [SMALL_STATE(1090)] = 47419, - [SMALL_STATE(1091)] = 47488, - [SMALL_STATE(1092)] = 47543, - [SMALL_STATE(1093)] = 47612, - [SMALL_STATE(1094)] = 47667, - [SMALL_STATE(1095)] = 47736, - [SMALL_STATE(1096)] = 47805, - [SMALL_STATE(1097)] = 47874, - [SMALL_STATE(1098)] = 47943, - [SMALL_STATE(1099)] = 48012, - [SMALL_STATE(1100)] = 48081, - [SMALL_STATE(1101)] = 48150, - [SMALL_STATE(1102)] = 48205, - [SMALL_STATE(1103)] = 48274, - [SMALL_STATE(1104)] = 48343, - [SMALL_STATE(1105)] = 48412, - [SMALL_STATE(1106)] = 48481, - [SMALL_STATE(1107)] = 48550, - [SMALL_STATE(1108)] = 48619, - [SMALL_STATE(1109)] = 48688, - [SMALL_STATE(1110)] = 48740, - [SMALL_STATE(1111)] = 48792, - [SMALL_STATE(1112)] = 48844, - [SMALL_STATE(1113)] = 48896, - [SMALL_STATE(1114)] = 48948, - [SMALL_STATE(1115)] = 49000, - [SMALL_STATE(1116)] = 49052, - [SMALL_STATE(1117)] = 49118, - [SMALL_STATE(1118)] = 49170, - [SMALL_STATE(1119)] = 49222, - [SMALL_STATE(1120)] = 49258, - [SMALL_STATE(1121)] = 49307, - [SMALL_STATE(1122)] = 49346, - [SMALL_STATE(1123)] = 49395, - [SMALL_STATE(1124)] = 49435, - [SMALL_STATE(1125)] = 49475, - [SMALL_STATE(1126)] = 49515, - [SMALL_STATE(1127)] = 49555, - [SMALL_STATE(1128)] = 49611, - [SMALL_STATE(1129)] = 49660, - [SMALL_STATE(1130)] = 49694, - [SMALL_STATE(1131)] = 49728, - [SMALL_STATE(1132)] = 49762, - [SMALL_STATE(1133)] = 49796, - [SMALL_STATE(1134)] = 49830, - [SMALL_STATE(1135)] = 49864, - [SMALL_STATE(1136)] = 49898, - [SMALL_STATE(1137)] = 49952, - [SMALL_STATE(1138)] = 50006, - [SMALL_STATE(1139)] = 50060, - [SMALL_STATE(1140)] = 50114, - [SMALL_STATE(1141)] = 50148, - [SMALL_STATE(1142)] = 50182, - [SMALL_STATE(1143)] = 50216, - [SMALL_STATE(1144)] = 50250, - [SMALL_STATE(1145)] = 50286, - [SMALL_STATE(1146)] = 50320, - [SMALL_STATE(1147)] = 50354, - [SMALL_STATE(1148)] = 50388, - [SMALL_STATE(1149)] = 50439, - [SMALL_STATE(1150)] = 50490, - [SMALL_STATE(1151)] = 50545, - [SMALL_STATE(1152)] = 50600, - [SMALL_STATE(1153)] = 50651, - [SMALL_STATE(1154)] = 50702, - [SMALL_STATE(1155)] = 50753, - [SMALL_STATE(1156)] = 50794, - [SMALL_STATE(1157)] = 50845, - [SMALL_STATE(1158)] = 50900, - [SMALL_STATE(1159)] = 50951, - [SMALL_STATE(1160)] = 51002, - [SMALL_STATE(1161)] = 51053, - [SMALL_STATE(1162)] = 51096, - [SMALL_STATE(1163)] = 51147, - [SMALL_STATE(1164)] = 51190, - [SMALL_STATE(1165)] = 51233, - [SMALL_STATE(1166)] = 51284, - [SMALL_STATE(1167)] = 51317, - [SMALL_STATE(1168)] = 51357, - [SMALL_STATE(1169)] = 51385, - [SMALL_STATE(1170)] = 51413, - [SMALL_STATE(1171)] = 51453, - [SMALL_STATE(1172)] = 51501, - [SMALL_STATE(1173)] = 51541, - [SMALL_STATE(1174)] = 51581, - [SMALL_STATE(1175)] = 51621, - [SMALL_STATE(1176)] = 51661, - [SMALL_STATE(1177)] = 51689, - [SMALL_STATE(1178)] = 51729, - [SMALL_STATE(1179)] = 51775, - [SMALL_STATE(1180)] = 51815, - [SMALL_STATE(1181)] = 51865, - [SMALL_STATE(1182)] = 51905, - [SMALL_STATE(1183)] = 51951, - [SMALL_STATE(1184)] = 51991, - [SMALL_STATE(1185)] = 52035, - [SMALL_STATE(1186)] = 52075, - [SMALL_STATE(1187)] = 52115, - [SMALL_STATE(1188)] = 52157, - [SMALL_STATE(1189)] = 52197, - [SMALL_STATE(1190)] = 52237, - [SMALL_STATE(1191)] = 52265, - [SMALL_STATE(1192)] = 52305, - [SMALL_STATE(1193)] = 52345, - [SMALL_STATE(1194)] = 52385, - [SMALL_STATE(1195)] = 52425, - [SMALL_STATE(1196)] = 52465, - [SMALL_STATE(1197)] = 52505, - [SMALL_STATE(1198)] = 52545, - [SMALL_STATE(1199)] = 52585, - [SMALL_STATE(1200)] = 52625, - [SMALL_STATE(1201)] = 52665, - [SMALL_STATE(1202)] = 52705, - [SMALL_STATE(1203)] = 52741, - [SMALL_STATE(1204)] = 52781, - [SMALL_STATE(1205)] = 52821, - [SMALL_STATE(1206)] = 52855, - [SMALL_STATE(1207)] = 52895, - [SMALL_STATE(1208)] = 52935, - [SMALL_STATE(1209)] = 52975, - [SMALL_STATE(1210)] = 53015, - [SMALL_STATE(1211)] = 53055, - [SMALL_STATE(1212)] = 53095, - [SMALL_STATE(1213)] = 53135, - [SMALL_STATE(1214)] = 53163, - [SMALL_STATE(1215)] = 53203, - [SMALL_STATE(1216)] = 53243, - [SMALL_STATE(1217)] = 53283, - [SMALL_STATE(1218)] = 53323, - [SMALL_STATE(1219)] = 53351, - [SMALL_STATE(1220)] = 53391, - [SMALL_STATE(1221)] = 53423, - [SMALL_STATE(1222)] = 53463, - [SMALL_STATE(1223)] = 53512, - [SMALL_STATE(1224)] = 53539, - [SMALL_STATE(1225)] = 53584, - [SMALL_STATE(1226)] = 53627, - [SMALL_STATE(1227)] = 53668, - [SMALL_STATE(1228)] = 53707, - [SMALL_STATE(1229)] = 53744, - [SMALL_STATE(1230)] = 53779, - [SMALL_STATE(1231)] = 53812, - [SMALL_STATE(1232)] = 53843, - [SMALL_STATE(1233)] = 53888, - [SMALL_STATE(1234)] = 53937, - [SMALL_STATE(1235)] = 53964, - [SMALL_STATE(1236)] = 54009, - [SMALL_STATE(1237)] = 54036, - [SMALL_STATE(1238)] = 54081, - [SMALL_STATE(1239)] = 54110, - [SMALL_STATE(1240)] = 54155, - [SMALL_STATE(1241)] = 54182, - [SMALL_STATE(1242)] = 54227, - [SMALL_STATE(1243)] = 54272, - [SMALL_STATE(1244)] = 54299, - [SMALL_STATE(1245)] = 54326, - [SMALL_STATE(1246)] = 54353, - [SMALL_STATE(1247)] = 54396, - [SMALL_STATE(1248)] = 54423, - [SMALL_STATE(1249)] = 54468, - [SMALL_STATE(1250)] = 54495, - [SMALL_STATE(1251)] = 54540, - [SMALL_STATE(1252)] = 54585, - [SMALL_STATE(1253)] = 54628, - [SMALL_STATE(1254)] = 54673, - [SMALL_STATE(1255)] = 54718, - [SMALL_STATE(1256)] = 54761, - [SMALL_STATE(1257)] = 54788, - [SMALL_STATE(1258)] = 54833, - [SMALL_STATE(1259)] = 54878, - [SMALL_STATE(1260)] = 54921, - [SMALL_STATE(1261)] = 54966, - [SMALL_STATE(1262)] = 55006, - [SMALL_STATE(1263)] = 55046, - [SMALL_STATE(1264)] = 55082, - [SMALL_STATE(1265)] = 55122, - [SMALL_STATE(1266)] = 55162, - [SMALL_STATE(1267)] = 55206, - [SMALL_STATE(1268)] = 55246, - [SMALL_STATE(1269)] = 55288, - [SMALL_STATE(1270)] = 55328, - [SMALL_STATE(1271)] = 55359, - [SMALL_STATE(1272)] = 55400, - [SMALL_STATE(1273)] = 55439, - [SMALL_STATE(1274)] = 55470, - [SMALL_STATE(1275)] = 55511, - [SMALL_STATE(1276)] = 55542, - [SMALL_STATE(1277)] = 55583, - [SMALL_STATE(1278)] = 55624, - [SMALL_STATE(1279)] = 55665, - [SMALL_STATE(1280)] = 55706, - [SMALL_STATE(1281)] = 55747, - [SMALL_STATE(1282)] = 55778, - [SMALL_STATE(1283)] = 55819, - [SMALL_STATE(1284)] = 55861, - [SMALL_STATE(1285)] = 55903, - [SMALL_STATE(1286)] = 55931, - [SMALL_STATE(1287)] = 55973, - [SMALL_STATE(1288)] = 56011, - [SMALL_STATE(1289)] = 56049, - [SMALL_STATE(1290)] = 56076, - [SMALL_STATE(1291)] = 56099, - [SMALL_STATE(1292)] = 56138, - [SMALL_STATE(1293)] = 56177, - [SMALL_STATE(1294)] = 56216, - [SMALL_STATE(1295)] = 56255, - [SMALL_STATE(1296)] = 56282, - [SMALL_STATE(1297)] = 56315, - [SMALL_STATE(1298)] = 56338, - [SMALL_STATE(1299)] = 56361, - [SMALL_STATE(1300)] = 56393, - [SMALL_STATE(1301)] = 56425, - [SMALL_STATE(1302)] = 56457, - [SMALL_STATE(1303)] = 56489, - [SMALL_STATE(1304)] = 56528, - [SMALL_STATE(1305)] = 56549, - [SMALL_STATE(1306)] = 56570, - [SMALL_STATE(1307)] = 56607, - [SMALL_STATE(1308)] = 56644, - [SMALL_STATE(1309)] = 56665, - [SMALL_STATE(1310)] = 56702, - [SMALL_STATE(1311)] = 56739, - [SMALL_STATE(1312)] = 56760, - [SMALL_STATE(1313)] = 56797, - [SMALL_STATE(1314)] = 56824, - [SMALL_STATE(1315)] = 56845, - [SMALL_STATE(1316)] = 56866, - [SMALL_STATE(1317)] = 56903, - [SMALL_STATE(1318)] = 56936, - [SMALL_STATE(1319)] = 56973, - [SMALL_STATE(1320)] = 57010, - [SMALL_STATE(1321)] = 57047, - [SMALL_STATE(1322)] = 57068, - [SMALL_STATE(1323)] = 57105, - [SMALL_STATE(1324)] = 57142, - [SMALL_STATE(1325)] = 57175, - [SMALL_STATE(1326)] = 57205, - [SMALL_STATE(1327)] = 57235, - [SMALL_STATE(1328)] = 57265, - [SMALL_STATE(1329)] = 57299, - [SMALL_STATE(1330)] = 57333, - [SMALL_STATE(1331)] = 57363, - [SMALL_STATE(1332)] = 57388, - [SMALL_STATE(1333)] = 57419, - [SMALL_STATE(1334)] = 57442, - [SMALL_STATE(1335)] = 57471, - [SMALL_STATE(1336)] = 57500, - [SMALL_STATE(1337)] = 57529, - [SMALL_STATE(1338)] = 57558, - [SMALL_STATE(1339)] = 57587, - [SMALL_STATE(1340)] = 57610, - [SMALL_STATE(1341)] = 57641, - [SMALL_STATE(1342)] = 57670, - [SMALL_STATE(1343)] = 57701, - [SMALL_STATE(1344)] = 57730, - [SMALL_STATE(1345)] = 57761, - [SMALL_STATE(1346)] = 57790, - [SMALL_STATE(1347)] = 57819, - [SMALL_STATE(1348)] = 57850, - [SMALL_STATE(1349)] = 57881, - [SMALL_STATE(1350)] = 57910, - [SMALL_STATE(1351)] = 57943, - [SMALL_STATE(1352)] = 57968, - [SMALL_STATE(1353)] = 57999, - [SMALL_STATE(1354)] = 58028, - [SMALL_STATE(1355)] = 58057, - [SMALL_STATE(1356)] = 58086, - [SMALL_STATE(1357)] = 58115, - [SMALL_STATE(1358)] = 58144, - [SMALL_STATE(1359)] = 58173, - [SMALL_STATE(1360)] = 58202, - [SMALL_STATE(1361)] = 58233, - [SMALL_STATE(1362)] = 58262, - [SMALL_STATE(1363)] = 58285, - [SMALL_STATE(1364)] = 58313, - [SMALL_STATE(1365)] = 58337, - [SMALL_STATE(1366)] = 58369, - [SMALL_STATE(1367)] = 58391, - [SMALL_STATE(1368)] = 58415, - [SMALL_STATE(1369)] = 58443, - [SMALL_STATE(1370)] = 58471, - [SMALL_STATE(1371)] = 58499, - [SMALL_STATE(1372)] = 58527, - [SMALL_STATE(1373)] = 58551, - [SMALL_STATE(1374)] = 58583, - [SMALL_STATE(1375)] = 58615, - [SMALL_STATE(1376)] = 58637, - [SMALL_STATE(1377)] = 58669, - [SMALL_STATE(1378)] = 58690, - [SMALL_STATE(1379)] = 58719, - [SMALL_STATE(1380)] = 58740, - [SMALL_STATE(1381)] = 58763, - [SMALL_STATE(1382)] = 58792, - [SMALL_STATE(1383)] = 58809, - [SMALL_STATE(1384)] = 58826, - [SMALL_STATE(1385)] = 58843, - [SMALL_STATE(1386)] = 58864, - [SMALL_STATE(1387)] = 58885, - [SMALL_STATE(1388)] = 58906, - [SMALL_STATE(1389)] = 58923, - [SMALL_STATE(1390)] = 58950, - [SMALL_STATE(1391)] = 58971, - [SMALL_STATE(1392)] = 58996, - [SMALL_STATE(1393)] = 59013, - [SMALL_STATE(1394)] = 59042, - [SMALL_STATE(1395)] = 59071, - [SMALL_STATE(1396)] = 59088, - [SMALL_STATE(1397)] = 59111, - [SMALL_STATE(1398)] = 59128, - [SMALL_STATE(1399)] = 59149, - [SMALL_STATE(1400)] = 59166, - [SMALL_STATE(1401)] = 59195, - [SMALL_STATE(1402)] = 59224, - [SMALL_STATE(1403)] = 59253, - [SMALL_STATE(1404)] = 59270, - [SMALL_STATE(1405)] = 59299, - [SMALL_STATE(1406)] = 59315, - [SMALL_STATE(1407)] = 59341, - [SMALL_STATE(1408)] = 59367, - [SMALL_STATE(1409)] = 59393, - [SMALL_STATE(1410)] = 59409, - [SMALL_STATE(1411)] = 59425, - [SMALL_STATE(1412)] = 59451, - [SMALL_STATE(1413)] = 59477, - [SMALL_STATE(1414)] = 59503, - [SMALL_STATE(1415)] = 59519, - [SMALL_STATE(1416)] = 59541, - [SMALL_STATE(1417)] = 59567, - [SMALL_STATE(1418)] = 59585, - [SMALL_STATE(1419)] = 59607, - [SMALL_STATE(1420)] = 59627, - [SMALL_STATE(1421)] = 59643, - [SMALL_STATE(1422)] = 59659, - [SMALL_STATE(1423)] = 59685, - [SMALL_STATE(1424)] = 59701, - [SMALL_STATE(1425)] = 59717, - [SMALL_STATE(1426)] = 59743, - [SMALL_STATE(1427)] = 59759, - [SMALL_STATE(1428)] = 59779, - [SMALL_STATE(1429)] = 59805, - [SMALL_STATE(1430)] = 59827, - [SMALL_STATE(1431)] = 59849, - [SMALL_STATE(1432)] = 59869, - [SMALL_STATE(1433)] = 59885, - [SMALL_STATE(1434)] = 59911, - [SMALL_STATE(1435)] = 59937, - [SMALL_STATE(1436)] = 59963, - [SMALL_STATE(1437)] = 59978, - [SMALL_STATE(1438)] = 59993, - [SMALL_STATE(1439)] = 60016, - [SMALL_STATE(1440)] = 60039, - [SMALL_STATE(1441)] = 60062, - [SMALL_STATE(1442)] = 60079, - [SMALL_STATE(1443)] = 60094, - [SMALL_STATE(1444)] = 60117, - [SMALL_STATE(1445)] = 60136, - [SMALL_STATE(1446)] = 60159, - [SMALL_STATE(1447)] = 60182, - [SMALL_STATE(1448)] = 60197, - [SMALL_STATE(1449)] = 60220, - [SMALL_STATE(1450)] = 60235, - [SMALL_STATE(1451)] = 60252, - [SMALL_STATE(1452)] = 60267, - [SMALL_STATE(1453)] = 60282, - [SMALL_STATE(1454)] = 60305, - [SMALL_STATE(1455)] = 60328, - [SMALL_STATE(1456)] = 60351, - [SMALL_STATE(1457)] = 60370, - [SMALL_STATE(1458)] = 60393, - [SMALL_STATE(1459)] = 60416, - [SMALL_STATE(1460)] = 60439, - [SMALL_STATE(1461)] = 60462, - [SMALL_STATE(1462)] = 60485, - [SMALL_STATE(1463)] = 60508, - [SMALL_STATE(1464)] = 60525, - [SMALL_STATE(1465)] = 60540, - [SMALL_STATE(1466)] = 60555, - [SMALL_STATE(1467)] = 60572, - [SMALL_STATE(1468)] = 60587, - [SMALL_STATE(1469)] = 60610, - [SMALL_STATE(1470)] = 60633, - [SMALL_STATE(1471)] = 60656, - [SMALL_STATE(1472)] = 60671, - [SMALL_STATE(1473)] = 60686, - [SMALL_STATE(1474)] = 60701, - [SMALL_STATE(1475)] = 60719, - [SMALL_STATE(1476)] = 60737, - [SMALL_STATE(1477)] = 60751, - [SMALL_STATE(1478)] = 60765, - [SMALL_STATE(1479)] = 60783, - [SMALL_STATE(1480)] = 60797, - [SMALL_STATE(1481)] = 60811, - [SMALL_STATE(1482)] = 60831, - [SMALL_STATE(1483)] = 60845, - [SMALL_STATE(1484)] = 60859, - [SMALL_STATE(1485)] = 60877, - [SMALL_STATE(1486)] = 60891, - [SMALL_STATE(1487)] = 60909, - [SMALL_STATE(1488)] = 60923, - [SMALL_STATE(1489)] = 60937, - [SMALL_STATE(1490)] = 60951, - [SMALL_STATE(1491)] = 60965, - [SMALL_STATE(1492)] = 60983, - [SMALL_STATE(1493)] = 61001, - [SMALL_STATE(1494)] = 61015, - [SMALL_STATE(1495)] = 61033, - [SMALL_STATE(1496)] = 61051, - [SMALL_STATE(1497)] = 61065, - [SMALL_STATE(1498)] = 61079, - [SMALL_STATE(1499)] = 61093, - [SMALL_STATE(1500)] = 61110, - [SMALL_STATE(1501)] = 61127, - [SMALL_STATE(1502)] = 61144, - [SMALL_STATE(1503)] = 61161, - [SMALL_STATE(1504)] = 61178, - [SMALL_STATE(1505)] = 61195, - [SMALL_STATE(1506)] = 61212, - [SMALL_STATE(1507)] = 61229, - [SMALL_STATE(1508)] = 61246, - [SMALL_STATE(1509)] = 61263, - [SMALL_STATE(1510)] = 61280, - [SMALL_STATE(1511)] = 61297, - [SMALL_STATE(1512)] = 61316, - [SMALL_STATE(1513)] = 61329, - [SMALL_STATE(1514)] = 61346, - [SMALL_STATE(1515)] = 61363, - [SMALL_STATE(1516)] = 61382, - [SMALL_STATE(1517)] = 61399, - [SMALL_STATE(1518)] = 61418, - [SMALL_STATE(1519)] = 61435, - [SMALL_STATE(1520)] = 61452, - [SMALL_STATE(1521)] = 61469, - [SMALL_STATE(1522)] = 61480, - [SMALL_STATE(1523)] = 61497, - [SMALL_STATE(1524)] = 61514, - [SMALL_STATE(1525)] = 61531, - [SMALL_STATE(1526)] = 61548, - [SMALL_STATE(1527)] = 61565, - [SMALL_STATE(1528)] = 61579, - [SMALL_STATE(1529)] = 61595, - [SMALL_STATE(1530)] = 61611, - [SMALL_STATE(1531)] = 61625, - [SMALL_STATE(1532)] = 61641, - [SMALL_STATE(1533)] = 61655, - [SMALL_STATE(1534)] = 61671, - [SMALL_STATE(1535)] = 61687, - [SMALL_STATE(1536)] = 61701, - [SMALL_STATE(1537)] = 61715, - [SMALL_STATE(1538)] = 61731, - [SMALL_STATE(1539)] = 61745, - [SMALL_STATE(1540)] = 61759, - [SMALL_STATE(1541)] = 61775, - [SMALL_STATE(1542)] = 61791, - [SMALL_STATE(1543)] = 61805, - [SMALL_STATE(1544)] = 61821, - [SMALL_STATE(1545)] = 61835, - [SMALL_STATE(1546)] = 61849, - [SMALL_STATE(1547)] = 61863, - [SMALL_STATE(1548)] = 61879, - [SMALL_STATE(1549)] = 61893, - [SMALL_STATE(1550)] = 61907, - [SMALL_STATE(1551)] = 61921, - [SMALL_STATE(1552)] = 61935, - [SMALL_STATE(1553)] = 61947, - [SMALL_STATE(1554)] = 61961, - [SMALL_STATE(1555)] = 61977, - [SMALL_STATE(1556)] = 61993, - [SMALL_STATE(1557)] = 62009, - [SMALL_STATE(1558)] = 62023, - [SMALL_STATE(1559)] = 62039, - [SMALL_STATE(1560)] = 62055, - [SMALL_STATE(1561)] = 62071, - [SMALL_STATE(1562)] = 62085, - [SMALL_STATE(1563)] = 62101, - [SMALL_STATE(1564)] = 62115, - [SMALL_STATE(1565)] = 62129, - [SMALL_STATE(1566)] = 62145, - [SMALL_STATE(1567)] = 62159, - [SMALL_STATE(1568)] = 62175, - [SMALL_STATE(1569)] = 62191, - [SMALL_STATE(1570)] = 62207, - [SMALL_STATE(1571)] = 62223, - [SMALL_STATE(1572)] = 62236, - [SMALL_STATE(1573)] = 62249, - [SMALL_STATE(1574)] = 62262, - [SMALL_STATE(1575)] = 62275, - [SMALL_STATE(1576)] = 62284, - [SMALL_STATE(1577)] = 62297, - [SMALL_STATE(1578)] = 62310, - [SMALL_STATE(1579)] = 62323, - [SMALL_STATE(1580)] = 62336, - [SMALL_STATE(1581)] = 62349, - [SMALL_STATE(1582)] = 62362, - [SMALL_STATE(1583)] = 62375, - [SMALL_STATE(1584)] = 62388, - [SMALL_STATE(1585)] = 62401, - [SMALL_STATE(1586)] = 62410, - [SMALL_STATE(1587)] = 62423, - [SMALL_STATE(1588)] = 62436, - [SMALL_STATE(1589)] = 62449, - [SMALL_STATE(1590)] = 62460, - [SMALL_STATE(1591)] = 62473, - [SMALL_STATE(1592)] = 62482, - [SMALL_STATE(1593)] = 62495, - [SMALL_STATE(1594)] = 62508, - [SMALL_STATE(1595)] = 62521, - [SMALL_STATE(1596)] = 62530, - [SMALL_STATE(1597)] = 62543, - [SMALL_STATE(1598)] = 62556, - [SMALL_STATE(1599)] = 62569, - [SMALL_STATE(1600)] = 62578, - [SMALL_STATE(1601)] = 62591, - [SMALL_STATE(1602)] = 62604, - [SMALL_STATE(1603)] = 62617, - [SMALL_STATE(1604)] = 62630, - [SMALL_STATE(1605)] = 62643, - [SMALL_STATE(1606)] = 62652, - [SMALL_STATE(1607)] = 62665, - [SMALL_STATE(1608)] = 62678, - [SMALL_STATE(1609)] = 62691, - [SMALL_STATE(1610)] = 62704, - [SMALL_STATE(1611)] = 62717, - [SMALL_STATE(1612)] = 62730, - [SMALL_STATE(1613)] = 62743, - [SMALL_STATE(1614)] = 62756, - [SMALL_STATE(1615)] = 62769, - [SMALL_STATE(1616)] = 62782, - [SMALL_STATE(1617)] = 62795, - [SMALL_STATE(1618)] = 62808, - [SMALL_STATE(1619)] = 62821, - [SMALL_STATE(1620)] = 62834, - [SMALL_STATE(1621)] = 62847, - [SMALL_STATE(1622)] = 62860, - [SMALL_STATE(1623)] = 62873, - [SMALL_STATE(1624)] = 62886, - [SMALL_STATE(1625)] = 62899, - [SMALL_STATE(1626)] = 62912, - [SMALL_STATE(1627)] = 62925, - [SMALL_STATE(1628)] = 62938, - [SMALL_STATE(1629)] = 62951, - [SMALL_STATE(1630)] = 62964, - [SMALL_STATE(1631)] = 62977, - [SMALL_STATE(1632)] = 62986, - [SMALL_STATE(1633)] = 62999, - [SMALL_STATE(1634)] = 63012, - [SMALL_STATE(1635)] = 63025, - [SMALL_STATE(1636)] = 63038, - [SMALL_STATE(1637)] = 63051, - [SMALL_STATE(1638)] = 63064, - [SMALL_STATE(1639)] = 63077, - [SMALL_STATE(1640)] = 63090, - [SMALL_STATE(1641)] = 63103, - [SMALL_STATE(1642)] = 63116, - [SMALL_STATE(1643)] = 63129, - [SMALL_STATE(1644)] = 63142, - [SMALL_STATE(1645)] = 63155, - [SMALL_STATE(1646)] = 63168, - [SMALL_STATE(1647)] = 63181, - [SMALL_STATE(1648)] = 63194, - [SMALL_STATE(1649)] = 63207, - [SMALL_STATE(1650)] = 63220, - [SMALL_STATE(1651)] = 63233, - [SMALL_STATE(1652)] = 63246, - [SMALL_STATE(1653)] = 63257, - [SMALL_STATE(1654)] = 63270, - [SMALL_STATE(1655)] = 63283, - [SMALL_STATE(1656)] = 63296, - [SMALL_STATE(1657)] = 63309, - [SMALL_STATE(1658)] = 63322, - [SMALL_STATE(1659)] = 63335, - [SMALL_STATE(1660)] = 63348, - [SMALL_STATE(1661)] = 63361, - [SMALL_STATE(1662)] = 63374, - [SMALL_STATE(1663)] = 63387, - [SMALL_STATE(1664)] = 63400, - [SMALL_STATE(1665)] = 63413, - [SMALL_STATE(1666)] = 63424, - [SMALL_STATE(1667)] = 63437, - [SMALL_STATE(1668)] = 63450, - [SMALL_STATE(1669)] = 63463, - [SMALL_STATE(1670)] = 63476, - [SMALL_STATE(1671)] = 63489, - [SMALL_STATE(1672)] = 63498, - [SMALL_STATE(1673)] = 63511, - [SMALL_STATE(1674)] = 63524, - [SMALL_STATE(1675)] = 63533, - [SMALL_STATE(1676)] = 63544, - [SMALL_STATE(1677)] = 63557, - [SMALL_STATE(1678)] = 63566, - [SMALL_STATE(1679)] = 63579, - [SMALL_STATE(1680)] = 63590, - [SMALL_STATE(1681)] = 63599, - [SMALL_STATE(1682)] = 63612, - [SMALL_STATE(1683)] = 63625, - [SMALL_STATE(1684)] = 63638, - [SMALL_STATE(1685)] = 63651, - [SMALL_STATE(1686)] = 63664, - [SMALL_STATE(1687)] = 63677, - [SMALL_STATE(1688)] = 63687, - [SMALL_STATE(1689)] = 63695, - [SMALL_STATE(1690)] = 63705, - [SMALL_STATE(1691)] = 63715, - [SMALL_STATE(1692)] = 63723, - [SMALL_STATE(1693)] = 63733, - [SMALL_STATE(1694)] = 63743, - [SMALL_STATE(1695)] = 63753, - [SMALL_STATE(1696)] = 63761, - [SMALL_STATE(1697)] = 63771, - [SMALL_STATE(1698)] = 63781, - [SMALL_STATE(1699)] = 63791, - [SMALL_STATE(1700)] = 63801, - [SMALL_STATE(1701)] = 63811, - [SMALL_STATE(1702)] = 63821, - [SMALL_STATE(1703)] = 63831, - [SMALL_STATE(1704)] = 63841, - [SMALL_STATE(1705)] = 63851, - [SMALL_STATE(1706)] = 63861, - [SMALL_STATE(1707)] = 63871, - [SMALL_STATE(1708)] = 63881, - [SMALL_STATE(1709)] = 63891, - [SMALL_STATE(1710)] = 63901, - [SMALL_STATE(1711)] = 63911, - [SMALL_STATE(1712)] = 63921, - [SMALL_STATE(1713)] = 63931, - [SMALL_STATE(1714)] = 63939, - [SMALL_STATE(1715)] = 63947, - [SMALL_STATE(1716)] = 63957, - [SMALL_STATE(1717)] = 63967, - [SMALL_STATE(1718)] = 63977, - [SMALL_STATE(1719)] = 63987, - [SMALL_STATE(1720)] = 63997, - [SMALL_STATE(1721)] = 64007, - [SMALL_STATE(1722)] = 64017, - [SMALL_STATE(1723)] = 64027, - [SMALL_STATE(1724)] = 64037, - [SMALL_STATE(1725)] = 64047, - [SMALL_STATE(1726)] = 64057, - [SMALL_STATE(1727)] = 64067, - [SMALL_STATE(1728)] = 64075, - [SMALL_STATE(1729)] = 64085, - [SMALL_STATE(1730)] = 64093, - [SMALL_STATE(1731)] = 64101, - [SMALL_STATE(1732)] = 64111, - [SMALL_STATE(1733)] = 64121, - [SMALL_STATE(1734)] = 64129, - [SMALL_STATE(1735)] = 64139, - [SMALL_STATE(1736)] = 64149, - [SMALL_STATE(1737)] = 64159, - [SMALL_STATE(1738)] = 64169, - [SMALL_STATE(1739)] = 64179, - [SMALL_STATE(1740)] = 64189, - [SMALL_STATE(1741)] = 64197, - [SMALL_STATE(1742)] = 64207, - [SMALL_STATE(1743)] = 64217, - [SMALL_STATE(1744)] = 64225, - [SMALL_STATE(1745)] = 64235, - [SMALL_STATE(1746)] = 64245, - [SMALL_STATE(1747)] = 64255, - [SMALL_STATE(1748)] = 64265, - [SMALL_STATE(1749)] = 64273, - [SMALL_STATE(1750)] = 64283, - [SMALL_STATE(1751)] = 64293, - [SMALL_STATE(1752)] = 64303, - [SMALL_STATE(1753)] = 64313, - [SMALL_STATE(1754)] = 64323, - [SMALL_STATE(1755)] = 64333, - [SMALL_STATE(1756)] = 64343, - [SMALL_STATE(1757)] = 64351, - [SMALL_STATE(1758)] = 64361, - [SMALL_STATE(1759)] = 64371, - [SMALL_STATE(1760)] = 64381, - [SMALL_STATE(1761)] = 64391, - [SMALL_STATE(1762)] = 64399, - [SMALL_STATE(1763)] = 64409, - [SMALL_STATE(1764)] = 64419, - [SMALL_STATE(1765)] = 64429, - [SMALL_STATE(1766)] = 64439, - [SMALL_STATE(1767)] = 64449, - [SMALL_STATE(1768)] = 64459, - [SMALL_STATE(1769)] = 64469, - [SMALL_STATE(1770)] = 64477, - [SMALL_STATE(1771)] = 64485, - [SMALL_STATE(1772)] = 64495, - [SMALL_STATE(1773)] = 64503, - [SMALL_STATE(1774)] = 64513, - [SMALL_STATE(1775)] = 64521, - [SMALL_STATE(1776)] = 64528, - [SMALL_STATE(1777)] = 64535, - [SMALL_STATE(1778)] = 64542, - [SMALL_STATE(1779)] = 64549, - [SMALL_STATE(1780)] = 64556, - [SMALL_STATE(1781)] = 64563, - [SMALL_STATE(1782)] = 64570, - [SMALL_STATE(1783)] = 64577, - [SMALL_STATE(1784)] = 64584, - [SMALL_STATE(1785)] = 64591, - [SMALL_STATE(1786)] = 64598, - [SMALL_STATE(1787)] = 64605, - [SMALL_STATE(1788)] = 64612, - [SMALL_STATE(1789)] = 64619, - [SMALL_STATE(1790)] = 64626, - [SMALL_STATE(1791)] = 64633, - [SMALL_STATE(1792)] = 64640, - [SMALL_STATE(1793)] = 64647, - [SMALL_STATE(1794)] = 64654, - [SMALL_STATE(1795)] = 64661, - [SMALL_STATE(1796)] = 64668, - [SMALL_STATE(1797)] = 64675, - [SMALL_STATE(1798)] = 64682, - [SMALL_STATE(1799)] = 64689, - [SMALL_STATE(1800)] = 64696, - [SMALL_STATE(1801)] = 64703, - [SMALL_STATE(1802)] = 64710, - [SMALL_STATE(1803)] = 64717, - [SMALL_STATE(1804)] = 64724, - [SMALL_STATE(1805)] = 64731, - [SMALL_STATE(1806)] = 64738, - [SMALL_STATE(1807)] = 64745, - [SMALL_STATE(1808)] = 64752, - [SMALL_STATE(1809)] = 64759, - [SMALL_STATE(1810)] = 64766, - [SMALL_STATE(1811)] = 64773, - [SMALL_STATE(1812)] = 64780, - [SMALL_STATE(1813)] = 64787, - [SMALL_STATE(1814)] = 64794, - [SMALL_STATE(1815)] = 64801, - [SMALL_STATE(1816)] = 64808, - [SMALL_STATE(1817)] = 64815, - [SMALL_STATE(1818)] = 64822, - [SMALL_STATE(1819)] = 64829, - [SMALL_STATE(1820)] = 64836, - [SMALL_STATE(1821)] = 64843, - [SMALL_STATE(1822)] = 64850, - [SMALL_STATE(1823)] = 64857, - [SMALL_STATE(1824)] = 64864, - [SMALL_STATE(1825)] = 64871, - [SMALL_STATE(1826)] = 64878, - [SMALL_STATE(1827)] = 64885, - [SMALL_STATE(1828)] = 64892, - [SMALL_STATE(1829)] = 64899, - [SMALL_STATE(1830)] = 64906, - [SMALL_STATE(1831)] = 64913, - [SMALL_STATE(1832)] = 64920, - [SMALL_STATE(1833)] = 64927, - [SMALL_STATE(1834)] = 64934, - [SMALL_STATE(1835)] = 64941, - [SMALL_STATE(1836)] = 64948, - [SMALL_STATE(1837)] = 64955, - [SMALL_STATE(1838)] = 64962, - [SMALL_STATE(1839)] = 64969, - [SMALL_STATE(1840)] = 64976, - [SMALL_STATE(1841)] = 64983, - [SMALL_STATE(1842)] = 64990, - [SMALL_STATE(1843)] = 64997, - [SMALL_STATE(1844)] = 65004, - [SMALL_STATE(1845)] = 65011, - [SMALL_STATE(1846)] = 65018, - [SMALL_STATE(1847)] = 65025, - [SMALL_STATE(1848)] = 65032, - [SMALL_STATE(1849)] = 65039, - [SMALL_STATE(1850)] = 65046, - [SMALL_STATE(1851)] = 65053, - [SMALL_STATE(1852)] = 65060, - [SMALL_STATE(1853)] = 65067, - [SMALL_STATE(1854)] = 65074, - [SMALL_STATE(1855)] = 65081, - [SMALL_STATE(1856)] = 65088, - [SMALL_STATE(1857)] = 65095, - [SMALL_STATE(1858)] = 65102, - [SMALL_STATE(1859)] = 65109, - [SMALL_STATE(1860)] = 65116, - [SMALL_STATE(1861)] = 65123, - [SMALL_STATE(1862)] = 65130, - [SMALL_STATE(1863)] = 65137, - [SMALL_STATE(1864)] = 65144, - [SMALL_STATE(1865)] = 65151, - [SMALL_STATE(1866)] = 65158, - [SMALL_STATE(1867)] = 65165, - [SMALL_STATE(1868)] = 65172, - [SMALL_STATE(1869)] = 65179, - [SMALL_STATE(1870)] = 65186, - [SMALL_STATE(1871)] = 65193, - [SMALL_STATE(1872)] = 65200, - [SMALL_STATE(1873)] = 65207, - [SMALL_STATE(1874)] = 65214, - [SMALL_STATE(1875)] = 65221, - [SMALL_STATE(1876)] = 65228, - [SMALL_STATE(1877)] = 65235, - [SMALL_STATE(1878)] = 65242, - [SMALL_STATE(1879)] = 65249, - [SMALL_STATE(1880)] = 65256, - [SMALL_STATE(1881)] = 65263, - [SMALL_STATE(1882)] = 65270, - [SMALL_STATE(1883)] = 65277, - [SMALL_STATE(1884)] = 65284, - [SMALL_STATE(1885)] = 65291, - [SMALL_STATE(1886)] = 65298, - [SMALL_STATE(1887)] = 65305, - [SMALL_STATE(1888)] = 65312, - [SMALL_STATE(1889)] = 65319, - [SMALL_STATE(1890)] = 65326, - [SMALL_STATE(1891)] = 65333, - [SMALL_STATE(1892)] = 65340, - [SMALL_STATE(1893)] = 65347, - [SMALL_STATE(1894)] = 65354, - [SMALL_STATE(1895)] = 65361, - [SMALL_STATE(1896)] = 65368, - [SMALL_STATE(1897)] = 65375, - [SMALL_STATE(1898)] = 65382, - [SMALL_STATE(1899)] = 65389, - [SMALL_STATE(1900)] = 65396, - [SMALL_STATE(1901)] = 65403, - [SMALL_STATE(1902)] = 65410, - [SMALL_STATE(1903)] = 65417, - [SMALL_STATE(1904)] = 65424, - [SMALL_STATE(1905)] = 65431, - [SMALL_STATE(1906)] = 65438, - [SMALL_STATE(1907)] = 65445, - [SMALL_STATE(1908)] = 65452, - [SMALL_STATE(1909)] = 65459, - [SMALL_STATE(1910)] = 65466, - [SMALL_STATE(1911)] = 65473, - [SMALL_STATE(1912)] = 65480, - [SMALL_STATE(1913)] = 65487, - [SMALL_STATE(1914)] = 65494, - [SMALL_STATE(1915)] = 65501, - [SMALL_STATE(1916)] = 65508, - [SMALL_STATE(1917)] = 65515, - [SMALL_STATE(1918)] = 65522, - [SMALL_STATE(1919)] = 65529, - [SMALL_STATE(1920)] = 65536, - [SMALL_STATE(1921)] = 65543, - [SMALL_STATE(1922)] = 65550, - [SMALL_STATE(1923)] = 65557, - [SMALL_STATE(1924)] = 65564, - [SMALL_STATE(1925)] = 65571, - [SMALL_STATE(1926)] = 65578, - [SMALL_STATE(1927)] = 65585, - [SMALL_STATE(1928)] = 65592, - [SMALL_STATE(1929)] = 65599, - [SMALL_STATE(1930)] = 65606, - [SMALL_STATE(1931)] = 65613, - [SMALL_STATE(1932)] = 65620, - [SMALL_STATE(1933)] = 65627, - [SMALL_STATE(1934)] = 65634, - [SMALL_STATE(1935)] = 65641, - [SMALL_STATE(1936)] = 65648, - [SMALL_STATE(1937)] = 65655, - [SMALL_STATE(1938)] = 65662, - [SMALL_STATE(1939)] = 65669, - [SMALL_STATE(1940)] = 65676, - [SMALL_STATE(1941)] = 65683, - [SMALL_STATE(1942)] = 65690, - [SMALL_STATE(1943)] = 65697, - [SMALL_STATE(1944)] = 65704, - [SMALL_STATE(1945)] = 65711, - [SMALL_STATE(1946)] = 65718, - [SMALL_STATE(1947)] = 65725, - [SMALL_STATE(1948)] = 65732, - [SMALL_STATE(1949)] = 65739, - [SMALL_STATE(1950)] = 65746, - [SMALL_STATE(1951)] = 65753, - [SMALL_STATE(1952)] = 65760, - [SMALL_STATE(1953)] = 65767, - [SMALL_STATE(1954)] = 65774, - [SMALL_STATE(1955)] = 65781, - [SMALL_STATE(1956)] = 65788, - [SMALL_STATE(1957)] = 65795, - [SMALL_STATE(1958)] = 65802, - [SMALL_STATE(1959)] = 65809, - [SMALL_STATE(1960)] = 65816, - [SMALL_STATE(1961)] = 65823, - [SMALL_STATE(1962)] = 65830, - [SMALL_STATE(1963)] = 65837, - [SMALL_STATE(1964)] = 65844, - [SMALL_STATE(1965)] = 65851, - [SMALL_STATE(1966)] = 65858, - [SMALL_STATE(1967)] = 65865, - [SMALL_STATE(1968)] = 65872, - [SMALL_STATE(1969)] = 65879, - [SMALL_STATE(1970)] = 65886, - [SMALL_STATE(1971)] = 65893, - [SMALL_STATE(1972)] = 65900, - [SMALL_STATE(1973)] = 65907, - [SMALL_STATE(1974)] = 65914, - [SMALL_STATE(1975)] = 65921, - [SMALL_STATE(1976)] = 65928, - [SMALL_STATE(1977)] = 65935, - [SMALL_STATE(1978)] = 65942, - [SMALL_STATE(1979)] = 65949, - [SMALL_STATE(1980)] = 65956, - [SMALL_STATE(1981)] = 65963, - [SMALL_STATE(1982)] = 65970, - [SMALL_STATE(1983)] = 65977, - [SMALL_STATE(1984)] = 65984, - [SMALL_STATE(1985)] = 65991, - [SMALL_STATE(1986)] = 65998, - [SMALL_STATE(1987)] = 66005, - [SMALL_STATE(1988)] = 66012, - [SMALL_STATE(1989)] = 66019, - [SMALL_STATE(1990)] = 66026, - [SMALL_STATE(1991)] = 66033, - [SMALL_STATE(1992)] = 66040, - [SMALL_STATE(1993)] = 66047, - [SMALL_STATE(1994)] = 66054, - [SMALL_STATE(1995)] = 66061, - [SMALL_STATE(1996)] = 66068, - [SMALL_STATE(1997)] = 66075, - [SMALL_STATE(1998)] = 66082, - [SMALL_STATE(1999)] = 66089, - [SMALL_STATE(2000)] = 66096, - [SMALL_STATE(2001)] = 66103, - [SMALL_STATE(2002)] = 66110, - [SMALL_STATE(2003)] = 66117, - [SMALL_STATE(2004)] = 66124, - [SMALL_STATE(2005)] = 66131, - [SMALL_STATE(2006)] = 66138, - [SMALL_STATE(2007)] = 66145, - [SMALL_STATE(2008)] = 66152, - [SMALL_STATE(2009)] = 66159, - [SMALL_STATE(2010)] = 66166, - [SMALL_STATE(2011)] = 66173, - [SMALL_STATE(2012)] = 66180, - [SMALL_STATE(2013)] = 66187, - [SMALL_STATE(2014)] = 66194, - [SMALL_STATE(2015)] = 66201, - [SMALL_STATE(2016)] = 66208, - [SMALL_STATE(2017)] = 66215, - [SMALL_STATE(2018)] = 66222, - [SMALL_STATE(2019)] = 66229, - [SMALL_STATE(2020)] = 66236, - [SMALL_STATE(2021)] = 66243, - [SMALL_STATE(2022)] = 66250, + [SMALL_STATE(455)] = 0, + [SMALL_STATE(456)] = 113, + [SMALL_STATE(457)] = 226, + [SMALL_STATE(458)] = 339, + [SMALL_STATE(459)] = 452, + [SMALL_STATE(460)] = 565, + [SMALL_STATE(461)] = 678, + [SMALL_STATE(462)] = 791, + [SMALL_STATE(463)] = 904, + [SMALL_STATE(464)] = 1017, + [SMALL_STATE(465)] = 1130, + [SMALL_STATE(466)] = 1243, + [SMALL_STATE(467)] = 1356, + [SMALL_STATE(468)] = 1469, + [SMALL_STATE(469)] = 1582, + [SMALL_STATE(470)] = 1695, + [SMALL_STATE(471)] = 1808, + [SMALL_STATE(472)] = 1921, + [SMALL_STATE(473)] = 2034, + [SMALL_STATE(474)] = 2147, + [SMALL_STATE(475)] = 2260, + [SMALL_STATE(476)] = 2373, + [SMALL_STATE(477)] = 2486, + [SMALL_STATE(478)] = 2599, + [SMALL_STATE(479)] = 2712, + [SMALL_STATE(480)] = 2825, + [SMALL_STATE(481)] = 2938, + [SMALL_STATE(482)] = 3051, + [SMALL_STATE(483)] = 3164, + [SMALL_STATE(484)] = 3277, + [SMALL_STATE(485)] = 3387, + [SMALL_STATE(486)] = 3497, + [SMALL_STATE(487)] = 3607, + [SMALL_STATE(488)] = 3717, + [SMALL_STATE(489)] = 3827, + [SMALL_STATE(490)] = 3937, + [SMALL_STATE(491)] = 4047, + [SMALL_STATE(492)] = 4157, + [SMALL_STATE(493)] = 4267, + [SMALL_STATE(494)] = 4377, + [SMALL_STATE(495)] = 4487, + [SMALL_STATE(496)] = 4597, + [SMALL_STATE(497)] = 4707, + [SMALL_STATE(498)] = 4817, + [SMALL_STATE(499)] = 4927, + [SMALL_STATE(500)] = 5034, + [SMALL_STATE(501)] = 5141, + [SMALL_STATE(502)] = 5248, + [SMALL_STATE(503)] = 5355, + [SMALL_STATE(504)] = 5462, + [SMALL_STATE(505)] = 5569, + [SMALL_STATE(506)] = 5676, + [SMALL_STATE(507)] = 5783, + [SMALL_STATE(508)] = 5890, + [SMALL_STATE(509)] = 5997, + [SMALL_STATE(510)] = 6104, + [SMALL_STATE(511)] = 6211, + [SMALL_STATE(512)] = 6318, + [SMALL_STATE(513)] = 6425, + [SMALL_STATE(514)] = 6532, + [SMALL_STATE(515)] = 6639, + [SMALL_STATE(516)] = 6746, + [SMALL_STATE(517)] = 6853, + [SMALL_STATE(518)] = 6960, + [SMALL_STATE(519)] = 7067, + [SMALL_STATE(520)] = 7174, + [SMALL_STATE(521)] = 7281, + [SMALL_STATE(522)] = 7388, + [SMALL_STATE(523)] = 7495, + [SMALL_STATE(524)] = 7602, + [SMALL_STATE(525)] = 7709, + [SMALL_STATE(526)] = 7816, + [SMALL_STATE(527)] = 7923, + [SMALL_STATE(528)] = 8014, + [SMALL_STATE(529)] = 8121, + [SMALL_STATE(530)] = 8228, + [SMALL_STATE(531)] = 8335, + [SMALL_STATE(532)] = 8442, + [SMALL_STATE(533)] = 8549, + [SMALL_STATE(534)] = 8656, + [SMALL_STATE(535)] = 8763, + [SMALL_STATE(536)] = 8870, + [SMALL_STATE(537)] = 8977, + [SMALL_STATE(538)] = 9084, + [SMALL_STATE(539)] = 9191, + [SMALL_STATE(540)] = 9298, + [SMALL_STATE(541)] = 9405, + [SMALL_STATE(542)] = 9512, + [SMALL_STATE(543)] = 9619, + [SMALL_STATE(544)] = 9726, + [SMALL_STATE(545)] = 9833, + [SMALL_STATE(546)] = 9940, + [SMALL_STATE(547)] = 10047, + [SMALL_STATE(548)] = 10154, + [SMALL_STATE(549)] = 10261, + [SMALL_STATE(550)] = 10368, + [SMALL_STATE(551)] = 10475, + [SMALL_STATE(552)] = 10582, + [SMALL_STATE(553)] = 10689, + [SMALL_STATE(554)] = 10796, + [SMALL_STATE(555)] = 10903, + [SMALL_STATE(556)] = 11010, + [SMALL_STATE(557)] = 11117, + [SMALL_STATE(558)] = 11224, + [SMALL_STATE(559)] = 11331, + [SMALL_STATE(560)] = 11438, + [SMALL_STATE(561)] = 11545, + [SMALL_STATE(562)] = 11652, + [SMALL_STATE(563)] = 11759, + [SMALL_STATE(564)] = 11866, + [SMALL_STATE(565)] = 11973, + [SMALL_STATE(566)] = 12080, + [SMALL_STATE(567)] = 12187, + [SMALL_STATE(568)] = 12294, + [SMALL_STATE(569)] = 12401, + [SMALL_STATE(570)] = 12508, + [SMALL_STATE(571)] = 12615, + [SMALL_STATE(572)] = 12722, + [SMALL_STATE(573)] = 12829, + [SMALL_STATE(574)] = 12936, + [SMALL_STATE(575)] = 13043, + [SMALL_STATE(576)] = 13150, + [SMALL_STATE(577)] = 13257, + [SMALL_STATE(578)] = 13364, + [SMALL_STATE(579)] = 13471, + [SMALL_STATE(580)] = 13578, + [SMALL_STATE(581)] = 13685, + [SMALL_STATE(582)] = 13792, + [SMALL_STATE(583)] = 13899, + [SMALL_STATE(584)] = 14006, + [SMALL_STATE(585)] = 14113, + [SMALL_STATE(586)] = 14220, + [SMALL_STATE(587)] = 14327, + [SMALL_STATE(588)] = 14434, + [SMALL_STATE(589)] = 14541, + [SMALL_STATE(590)] = 14648, + [SMALL_STATE(591)] = 14755, + [SMALL_STATE(592)] = 14862, + [SMALL_STATE(593)] = 14969, + [SMALL_STATE(594)] = 15076, + [SMALL_STATE(595)] = 15183, + [SMALL_STATE(596)] = 15290, + [SMALL_STATE(597)] = 15397, + [SMALL_STATE(598)] = 15504, + [SMALL_STATE(599)] = 15611, + [SMALL_STATE(600)] = 15718, + [SMALL_STATE(601)] = 15825, + [SMALL_STATE(602)] = 15932, + [SMALL_STATE(603)] = 16039, + [SMALL_STATE(604)] = 16146, + [SMALL_STATE(605)] = 16253, + [SMALL_STATE(606)] = 16360, + [SMALL_STATE(607)] = 16467, + [SMALL_STATE(608)] = 16574, + [SMALL_STATE(609)] = 16681, + [SMALL_STATE(610)] = 16788, + [SMALL_STATE(611)] = 16895, + [SMALL_STATE(612)] = 17002, + [SMALL_STATE(613)] = 17109, + [SMALL_STATE(614)] = 17216, + [SMALL_STATE(615)] = 17323, + [SMALL_STATE(616)] = 17430, + [SMALL_STATE(617)] = 17537, + [SMALL_STATE(618)] = 17644, + [SMALL_STATE(619)] = 17751, + [SMALL_STATE(620)] = 17858, + [SMALL_STATE(621)] = 17930, + [SMALL_STATE(622)] = 18002, + [SMALL_STATE(623)] = 18074, + [SMALL_STATE(624)] = 18181, + [SMALL_STATE(625)] = 18290, + [SMALL_STATE(626)] = 18359, + [SMALL_STATE(627)] = 18439, + [SMALL_STATE(628)] = 18503, + [SMALL_STATE(629)] = 18567, + [SMALL_STATE(630)] = 18631, + [SMALL_STATE(631)] = 18695, + [SMALL_STATE(632)] = 18759, + [SMALL_STATE(633)] = 18823, + [SMALL_STATE(634)] = 18887, + [SMALL_STATE(635)] = 18951, + [SMALL_STATE(636)] = 19015, + [SMALL_STATE(637)] = 19079, + [SMALL_STATE(638)] = 19143, + [SMALL_STATE(639)] = 19207, + [SMALL_STATE(640)] = 19308, + [SMALL_STATE(641)] = 19409, + [SMALL_STATE(642)] = 19510, + [SMALL_STATE(643)] = 19611, + [SMALL_STATE(644)] = 19712, + [SMALL_STATE(645)] = 19813, + [SMALL_STATE(646)] = 19914, + [SMALL_STATE(647)] = 20015, + [SMALL_STATE(648)] = 20113, + [SMALL_STATE(649)] = 20175, + [SMALL_STATE(650)] = 20273, + [SMALL_STATE(651)] = 20373, + [SMALL_STATE(652)] = 20468, + [SMALL_STATE(653)] = 20563, + [SMALL_STATE(654)] = 20624, + [SMALL_STATE(655)] = 20719, + [SMALL_STATE(656)] = 20814, + [SMALL_STATE(657)] = 20875, + [SMALL_STATE(658)] = 20970, + [SMALL_STATE(659)] = 21065, + [SMALL_STATE(660)] = 21126, + [SMALL_STATE(661)] = 21221, + [SMALL_STATE(662)] = 21316, + [SMALL_STATE(663)] = 21387, + [SMALL_STATE(664)] = 21453, + [SMALL_STATE(665)] = 21513, + [SMALL_STATE(666)] = 21581, + [SMALL_STATE(667)] = 21672, + [SMALL_STATE(668)] = 21731, + [SMALL_STATE(669)] = 21790, + [SMALL_STATE(670)] = 21849, + [SMALL_STATE(671)] = 21908, + [SMALL_STATE(672)] = 21967, + [SMALL_STATE(673)] = 22026, + [SMALL_STATE(674)] = 22085, + [SMALL_STATE(675)] = 22144, + [SMALL_STATE(676)] = 22203, + [SMALL_STATE(677)] = 22294, + [SMALL_STATE(678)] = 22353, + [SMALL_STATE(679)] = 22412, + [SMALL_STATE(680)] = 22471, + [SMALL_STATE(681)] = 22530, + [SMALL_STATE(682)] = 22589, + [SMALL_STATE(683)] = 22648, + [SMALL_STATE(684)] = 22739, + [SMALL_STATE(685)] = 22798, + [SMALL_STATE(686)] = 22889, + [SMALL_STATE(687)] = 22980, + [SMALL_STATE(688)] = 23071, + [SMALL_STATE(689)] = 23162, + [SMALL_STATE(690)] = 23253, + [SMALL_STATE(691)] = 23312, + [SMALL_STATE(692)] = 23378, + [SMALL_STATE(693)] = 23446, + [SMALL_STATE(694)] = 23504, + [SMALL_STATE(695)] = 23562, + [SMALL_STATE(696)] = 23650, + [SMALL_STATE(697)] = 23708, + [SMALL_STATE(698)] = 23776, + [SMALL_STATE(699)] = 23834, + [SMALL_STATE(700)] = 23902, + [SMALL_STATE(701)] = 23960, + [SMALL_STATE(702)] = 24028, + [SMALL_STATE(703)] = 24096, + [SMALL_STATE(704)] = 24161, + [SMALL_STATE(705)] = 24234, + [SMALL_STATE(706)] = 24299, + [SMALL_STATE(707)] = 24356, + [SMALL_STATE(708)] = 24413, + [SMALL_STATE(709)] = 24478, + [SMALL_STATE(710)] = 24543, + [SMALL_STATE(711)] = 24608, + [SMALL_STATE(712)] = 24665, + [SMALL_STATE(713)] = 24738, + [SMALL_STATE(714)] = 24799, + [SMALL_STATE(715)] = 24864, + [SMALL_STATE(716)] = 24929, + [SMALL_STATE(717)] = 25001, + [SMALL_STATE(718)] = 25057, + [SMALL_STATE(719)] = 25113, + [SMALL_STATE(720)] = 25185, + [SMALL_STATE(721)] = 25257, + [SMALL_STATE(722)] = 25329, + [SMALL_STATE(723)] = 25385, + [SMALL_STATE(724)] = 25444, + [SMALL_STATE(725)] = 25503, + [SMALL_STATE(726)] = 25562, + [SMALL_STATE(727)] = 25621, + [SMALL_STATE(728)] = 25680, + [SMALL_STATE(729)] = 25739, + [SMALL_STATE(730)] = 25798, + [SMALL_STATE(731)] = 25857, + [SMALL_STATE(732)] = 25916, + [SMALL_STATE(733)] = 25975, + [SMALL_STATE(734)] = 26034, + [SMALL_STATE(735)] = 26088, + [SMALL_STATE(736)] = 26142, + [SMALL_STATE(737)] = 26200, + [SMALL_STATE(738)] = 26258, + [SMALL_STATE(739)] = 26312, + [SMALL_STATE(740)] = 26370, + [SMALL_STATE(741)] = 26424, + [SMALL_STATE(742)] = 26482, + [SMALL_STATE(743)] = 26540, + [SMALL_STATE(744)] = 26598, + [SMALL_STATE(745)] = 26656, + [SMALL_STATE(746)] = 26714, + [SMALL_STATE(747)] = 26768, + [SMALL_STATE(748)] = 26822, + [SMALL_STATE(749)] = 26876, + [SMALL_STATE(750)] = 26930, + [SMALL_STATE(751)] = 26990, + [SMALL_STATE(752)] = 27044, + [SMALL_STATE(753)] = 27098, + [SMALL_STATE(754)] = 27152, + [SMALL_STATE(755)] = 27212, + [SMALL_STATE(756)] = 27266, + [SMALL_STATE(757)] = 27320, + [SMALL_STATE(758)] = 27374, + [SMALL_STATE(759)] = 27428, + [SMALL_STATE(760)] = 27482, + [SMALL_STATE(761)] = 27536, + [SMALL_STATE(762)] = 27590, + [SMALL_STATE(763)] = 27648, + [SMALL_STATE(764)] = 27702, + [SMALL_STATE(765)] = 27760, + [SMALL_STATE(766)] = 27818, + [SMALL_STATE(767)] = 27872, + [SMALL_STATE(768)] = 27930, + [SMALL_STATE(769)] = 27984, + [SMALL_STATE(770)] = 28038, + [SMALL_STATE(771)] = 28092, + [SMALL_STATE(772)] = 28146, + [SMALL_STATE(773)] = 28200, + [SMALL_STATE(774)] = 28254, + [SMALL_STATE(775)] = 28308, + [SMALL_STATE(776)] = 28361, + [SMALL_STATE(777)] = 28414, + [SMALL_STATE(778)] = 28467, + [SMALL_STATE(779)] = 28530, + [SMALL_STATE(780)] = 28583, + [SMALL_STATE(781)] = 28636, + [SMALL_STATE(782)] = 28689, + [SMALL_STATE(783)] = 28760, + [SMALL_STATE(784)] = 28823, + [SMALL_STATE(785)] = 28914, + [SMALL_STATE(786)] = 28967, + [SMALL_STATE(787)] = 29030, + [SMALL_STATE(788)] = 29083, + [SMALL_STATE(789)] = 29174, + [SMALL_STATE(790)] = 29245, + [SMALL_STATE(791)] = 29308, + [SMALL_STATE(792)] = 29361, + [SMALL_STATE(793)] = 29414, + [SMALL_STATE(794)] = 29477, + [SMALL_STATE(795)] = 29540, + [SMALL_STATE(796)] = 29593, + [SMALL_STATE(797)] = 29664, + [SMALL_STATE(798)] = 29717, + [SMALL_STATE(799)] = 29770, + [SMALL_STATE(800)] = 29823, + [SMALL_STATE(801)] = 29876, + [SMALL_STATE(802)] = 29947, + [SMALL_STATE(803)] = 30000, + [SMALL_STATE(804)] = 30053, + [SMALL_STATE(805)] = 30106, + [SMALL_STATE(806)] = 30188, + [SMALL_STATE(807)] = 30268, + [SMALL_STATE(808)] = 30346, + [SMALL_STATE(809)] = 30422, + [SMALL_STATE(810)] = 30496, + [SMALL_STATE(811)] = 30568, + [SMALL_STATE(812)] = 30636, + [SMALL_STATE(813)] = 30702, + [SMALL_STATE(814)] = 30788, + [SMALL_STATE(815)] = 30874, + [SMALL_STATE(816)] = 30954, + [SMALL_STATE(817)] = 31028, + [SMALL_STATE(818)] = 31112, + [SMALL_STATE(819)] = 31184, + [SMALL_STATE(820)] = 31252, + [SMALL_STATE(821)] = 31310, + [SMALL_STATE(822)] = 31368, + [SMALL_STATE(823)] = 31434, + [SMALL_STATE(824)] = 31512, + [SMALL_STATE(825)] = 31574, + [SMALL_STATE(826)] = 31658, + [SMALL_STATE(827)] = 31740, + [SMALL_STATE(828)] = 31800, + [SMALL_STATE(829)] = 31886, + [SMALL_STATE(830)] = 31972, + [SMALL_STATE(831)] = 32036, + [SMALL_STATE(832)] = 32112, + [SMALL_STATE(833)] = 32198, + [SMALL_STATE(834)] = 32262, + [SMALL_STATE(835)] = 32348, + [SMALL_STATE(836)] = 32403, + [SMALL_STATE(837)] = 32462, + [SMALL_STATE(838)] = 32517, + [SMALL_STATE(839)] = 32603, + [SMALL_STATE(840)] = 32653, + [SMALL_STATE(841)] = 32739, + [SMALL_STATE(842)] = 32789, + [SMALL_STATE(843)] = 32838, + [SMALL_STATE(844)] = 32887, + [SMALL_STATE(845)] = 32936, + [SMALL_STATE(846)] = 32985, + [SMALL_STATE(847)] = 33034, + [SMALL_STATE(848)] = 33083, + [SMALL_STATE(849)] = 33136, + [SMALL_STATE(850)] = 33185, + [SMALL_STATE(851)] = 33234, + [SMALL_STATE(852)] = 33283, + [SMALL_STATE(853)] = 33332, + [SMALL_STATE(854)] = 33381, + [SMALL_STATE(855)] = 33430, + [SMALL_STATE(856)] = 33479, + [SMALL_STATE(857)] = 33528, + [SMALL_STATE(858)] = 33577, + [SMALL_STATE(859)] = 33626, + [SMALL_STATE(860)] = 33675, + [SMALL_STATE(861)] = 33724, + [SMALL_STATE(862)] = 33773, + [SMALL_STATE(863)] = 33822, + [SMALL_STATE(864)] = 33871, + [SMALL_STATE(865)] = 33920, + [SMALL_STATE(866)] = 33969, + [SMALL_STATE(867)] = 34018, + [SMALL_STATE(868)] = 34067, + [SMALL_STATE(869)] = 34116, + [SMALL_STATE(870)] = 34165, + [SMALL_STATE(871)] = 34214, + [SMALL_STATE(872)] = 34263, + [SMALL_STATE(873)] = 34312, + [SMALL_STATE(874)] = 34365, + [SMALL_STATE(875)] = 34418, + [SMALL_STATE(876)] = 34467, + [SMALL_STATE(877)] = 34516, + [SMALL_STATE(878)] = 34569, + [SMALL_STATE(879)] = 34618, + [SMALL_STATE(880)] = 34667, + [SMALL_STATE(881)] = 34716, + [SMALL_STATE(882)] = 34769, + [SMALL_STATE(883)] = 34822, + [SMALL_STATE(884)] = 34875, + [SMALL_STATE(885)] = 34924, + [SMALL_STATE(886)] = 34983, + [SMALL_STATE(887)] = 35030, + [SMALL_STATE(888)] = 35107, + [SMALL_STATE(889)] = 35166, + [SMALL_STATE(890)] = 35225, + [SMALL_STATE(891)] = 35284, + [SMALL_STATE(892)] = 35367, + [SMALL_STATE(893)] = 35428, + [SMALL_STATE(894)] = 35507, + [SMALL_STATE(895)] = 35582, + [SMALL_STATE(896)] = 35655, + [SMALL_STATE(897)] = 35726, + [SMALL_STATE(898)] = 35795, + [SMALL_STATE(899)] = 35860, + [SMALL_STATE(900)] = 35923, + [SMALL_STATE(901)] = 36006, + [SMALL_STATE(902)] = 36089, + [SMALL_STATE(903)] = 36170, + [SMALL_STATE(904)] = 36247, + [SMALL_STATE(905)] = 36324, + [SMALL_STATE(906)] = 36381, + [SMALL_STATE(907)] = 36440, + [SMALL_STATE(908)] = 36499, + [SMALL_STATE(909)] = 36576, + [SMALL_STATE(910)] = 36653, + [SMALL_STATE(911)] = 36699, + [SMALL_STATE(912)] = 36749, + [SMALL_STATE(913)] = 36803, + [SMALL_STATE(914)] = 36849, + [SMALL_STATE(915)] = 36895, + [SMALL_STATE(916)] = 36941, + [SMALL_STATE(917)] = 36987, + [SMALL_STATE(918)] = 37033, + [SMALL_STATE(919)] = 37079, + [SMALL_STATE(920)] = 37125, + [SMALL_STATE(921)] = 37171, + [SMALL_STATE(922)] = 37217, + [SMALL_STATE(923)] = 37263, + [SMALL_STATE(924)] = 37309, + [SMALL_STATE(925)] = 37365, + [SMALL_STATE(926)] = 37411, + [SMALL_STATE(927)] = 37486, + [SMALL_STATE(928)] = 37561, + [SMALL_STATE(929)] = 37612, + [SMALL_STATE(930)] = 37656, + [SMALL_STATE(931)] = 37700, + [SMALL_STATE(932)] = 37744, + [SMALL_STATE(933)] = 37788, + [SMALL_STATE(934)] = 37832, + [SMALL_STATE(935)] = 37876, + [SMALL_STATE(936)] = 37920, + [SMALL_STATE(937)] = 37964, + [SMALL_STATE(938)] = 38008, + [SMALL_STATE(939)] = 38052, + [SMALL_STATE(940)] = 38103, + [SMALL_STATE(941)] = 38146, + [SMALL_STATE(942)] = 38219, + [SMALL_STATE(943)] = 38262, + [SMALL_STATE(944)] = 38335, + [SMALL_STATE(945)] = 38378, + [SMALL_STATE(946)] = 38446, + [SMALL_STATE(947)] = 38516, + [SMALL_STATE(948)] = 38586, + [SMALL_STATE(949)] = 38654, + [SMALL_STATE(950)] = 38722, + [SMALL_STATE(951)] = 38790, + [SMALL_STATE(952)] = 38858, + [SMALL_STATE(953)] = 38926, + [SMALL_STATE(954)] = 38994, + [SMALL_STATE(955)] = 39062, + [SMALL_STATE(956)] = 39130, + [SMALL_STATE(957)] = 39198, + [SMALL_STATE(958)] = 39266, + [SMALL_STATE(959)] = 39334, + [SMALL_STATE(960)] = 39407, + [SMALL_STATE(961)] = 39470, + [SMALL_STATE(962)] = 39527, + [SMALL_STATE(963)] = 39604, + [SMALL_STATE(964)] = 39681, + [SMALL_STATE(965)] = 39736, + [SMALL_STATE(966)] = 39809, + [SMALL_STATE(967)] = 39880, + [SMALL_STATE(968)] = 39949, + [SMALL_STATE(969)] = 40016, + [SMALL_STATE(970)] = 40081, + [SMALL_STATE(971)] = 40144, + [SMALL_STATE(972)] = 40203, + [SMALL_STATE(973)] = 40260, + [SMALL_STATE(974)] = 40337, + [SMALL_STATE(975)] = 40414, + [SMALL_STATE(976)] = 40469, + [SMALL_STATE(977)] = 40540, + [SMALL_STATE(978)] = 40609, + [SMALL_STATE(979)] = 40686, + [SMALL_STATE(980)] = 40753, + [SMALL_STATE(981)] = 40828, + [SMALL_STATE(982)] = 40903, + [SMALL_STATE(983)] = 40980, + [SMALL_STATE(984)] = 41057, + [SMALL_STATE(985)] = 41122, + [SMALL_STATE(986)] = 41181, + [SMALL_STATE(987)] = 41221, + [SMALL_STATE(988)] = 41285, + [SMALL_STATE(989)] = 41349, + [SMALL_STATE(990)] = 41389, + [SMALL_STATE(991)] = 41429, + [SMALL_STATE(992)] = 41469, + [SMALL_STATE(993)] = 41533, + [SMALL_STATE(994)] = 41597, + [SMALL_STATE(995)] = 41661, + [SMALL_STATE(996)] = 41725, + [SMALL_STATE(997)] = 41789, + [SMALL_STATE(998)] = 41853, + [SMALL_STATE(999)] = 41893, + [SMALL_STATE(1000)] = 41957, + [SMALL_STATE(1001)] = 42021, + [SMALL_STATE(1002)] = 42061, + [SMALL_STATE(1003)] = 42125, + [SMALL_STATE(1004)] = 42189, + [SMALL_STATE(1005)] = 42253, + [SMALL_STATE(1006)] = 42314, + [SMALL_STATE(1007)] = 42375, + [SMALL_STATE(1008)] = 42436, + [SMALL_STATE(1009)] = 42497, + [SMALL_STATE(1010)] = 42558, + [SMALL_STATE(1011)] = 42619, + [SMALL_STATE(1012)] = 42665, + [SMALL_STATE(1013)] = 42739, + [SMALL_STATE(1014)] = 42813, + [SMALL_STATE(1015)] = 42861, + [SMALL_STATE(1016)] = 42936, + [SMALL_STATE(1017)] = 43011, + [SMALL_STATE(1018)] = 43086, + [SMALL_STATE(1019)] = 43161, + [SMALL_STATE(1020)] = 43233, + [SMALL_STATE(1021)] = 43305, + [SMALL_STATE(1022)] = 43345, + [SMALL_STATE(1023)] = 43417, + [SMALL_STATE(1024)] = 43487, + [SMALL_STATE(1025)] = 43559, + [SMALL_STATE(1026)] = 43629, + [SMALL_STATE(1027)] = 43679, + [SMALL_STATE(1028)] = 43751, + [SMALL_STATE(1029)] = 43823, + [SMALL_STATE(1030)] = 43895, + [SMALL_STATE(1031)] = 43965, + [SMALL_STATE(1032)] = 44037, + [SMALL_STATE(1033)] = 44107, + [SMALL_STATE(1034)] = 44179, + [SMALL_STATE(1035)] = 44251, + [SMALL_STATE(1036)] = 44323, + [SMALL_STATE(1037)] = 44393, + [SMALL_STATE(1038)] = 44465, + [SMALL_STATE(1039)] = 44537, + [SMALL_STATE(1040)] = 44611, + [SMALL_STATE(1041)] = 44683, + [SMALL_STATE(1042)] = 44753, + [SMALL_STATE(1043)] = 44825, + [SMALL_STATE(1044)] = 44895, + [SMALL_STATE(1045)] = 44945, + [SMALL_STATE(1046)] = 45017, + [SMALL_STATE(1047)] = 45089, + [SMALL_STATE(1048)] = 45161, + [SMALL_STATE(1049)] = 45233, + [SMALL_STATE(1050)] = 45305, + [SMALL_STATE(1051)] = 45345, + [SMALL_STATE(1052)] = 45417, + [SMALL_STATE(1053)] = 45489, + [SMALL_STATE(1054)] = 45559, + [SMALL_STATE(1055)] = 45611, + [SMALL_STATE(1056)] = 45683, + [SMALL_STATE(1057)] = 45755, + [SMALL_STATE(1058)] = 45827, + [SMALL_STATE(1059)] = 45895, + [SMALL_STATE(1060)] = 45961, + [SMALL_STATE(1061)] = 46027, + [SMALL_STATE(1062)] = 46091, + [SMALL_STATE(1063)] = 46153, + [SMALL_STATE(1064)] = 46213, + [SMALL_STATE(1065)] = 46269, + [SMALL_STATE(1066)] = 46341, + [SMALL_STATE(1067)] = 46395, + [SMALL_STATE(1068)] = 46467, + [SMALL_STATE(1069)] = 46507, + [SMALL_STATE(1070)] = 46579, + [SMALL_STATE(1071)] = 46651, + [SMALL_STATE(1072)] = 46720, + [SMALL_STATE(1073)] = 46789, + [SMALL_STATE(1074)] = 46858, + [SMALL_STATE(1075)] = 46913, + [SMALL_STATE(1076)] = 46982, + [SMALL_STATE(1077)] = 47051, + [SMALL_STATE(1078)] = 47106, + [SMALL_STATE(1079)] = 47175, + [SMALL_STATE(1080)] = 47230, + [SMALL_STATE(1081)] = 47299, + [SMALL_STATE(1082)] = 47368, + [SMALL_STATE(1083)] = 47437, + [SMALL_STATE(1084)] = 47506, + [SMALL_STATE(1085)] = 47575, + [SMALL_STATE(1086)] = 47644, + [SMALL_STATE(1087)] = 47699, + [SMALL_STATE(1088)] = 47768, + [SMALL_STATE(1089)] = 47837, + [SMALL_STATE(1090)] = 47906, + [SMALL_STATE(1091)] = 47975, + [SMALL_STATE(1092)] = 48044, + [SMALL_STATE(1093)] = 48113, + [SMALL_STATE(1094)] = 48168, + [SMALL_STATE(1095)] = 48237, + [SMALL_STATE(1096)] = 48306, + [SMALL_STATE(1097)] = 48375, + [SMALL_STATE(1098)] = 48444, + [SMALL_STATE(1099)] = 48499, + [SMALL_STATE(1100)] = 48568, + [SMALL_STATE(1101)] = 48637, + [SMALL_STATE(1102)] = 48703, + [SMALL_STATE(1103)] = 48755, + [SMALL_STATE(1104)] = 48791, + [SMALL_STATE(1105)] = 48843, + [SMALL_STATE(1106)] = 48895, + [SMALL_STATE(1107)] = 48947, + [SMALL_STATE(1108)] = 48999, + [SMALL_STATE(1109)] = 49051, + [SMALL_STATE(1110)] = 49103, + [SMALL_STATE(1111)] = 49155, + [SMALL_STATE(1112)] = 49207, + [SMALL_STATE(1113)] = 49256, + [SMALL_STATE(1114)] = 49295, + [SMALL_STATE(1115)] = 49344, + [SMALL_STATE(1116)] = 49384, + [SMALL_STATE(1117)] = 49424, + [SMALL_STATE(1118)] = 49464, + [SMALL_STATE(1119)] = 49520, + [SMALL_STATE(1120)] = 49560, + [SMALL_STATE(1121)] = 49609, + [SMALL_STATE(1122)] = 49643, + [SMALL_STATE(1123)] = 49677, + [SMALL_STATE(1124)] = 49711, + [SMALL_STATE(1125)] = 49745, + [SMALL_STATE(1126)] = 49779, + [SMALL_STATE(1127)] = 49813, + [SMALL_STATE(1128)] = 49847, + [SMALL_STATE(1129)] = 49901, + [SMALL_STATE(1130)] = 49935, + [SMALL_STATE(1131)] = 49969, + [SMALL_STATE(1132)] = 50003, + [SMALL_STATE(1133)] = 50057, + [SMALL_STATE(1134)] = 50111, + [SMALL_STATE(1135)] = 50145, + [SMALL_STATE(1136)] = 50179, + [SMALL_STATE(1137)] = 50213, + [SMALL_STATE(1138)] = 50249, + [SMALL_STATE(1139)] = 50283, + [SMALL_STATE(1140)] = 50337, + [SMALL_STATE(1141)] = 50388, + [SMALL_STATE(1142)] = 50421, + [SMALL_STATE(1143)] = 50472, + [SMALL_STATE(1144)] = 50523, + [SMALL_STATE(1145)] = 50574, + [SMALL_STATE(1146)] = 50625, + [SMALL_STATE(1147)] = 50668, + [SMALL_STATE(1148)] = 50719, + [SMALL_STATE(1149)] = 50770, + [SMALL_STATE(1150)] = 50825, + [SMALL_STATE(1151)] = 50868, + [SMALL_STATE(1152)] = 50919, + [SMALL_STATE(1153)] = 50974, + [SMALL_STATE(1154)] = 51029, + [SMALL_STATE(1155)] = 51080, + [SMALL_STATE(1156)] = 51131, + [SMALL_STATE(1157)] = 51182, + [SMALL_STATE(1158)] = 51225, + [SMALL_STATE(1159)] = 51266, + [SMALL_STATE(1160)] = 51306, + [SMALL_STATE(1161)] = 51346, + [SMALL_STATE(1162)] = 51386, + [SMALL_STATE(1163)] = 51426, + [SMALL_STATE(1164)] = 51466, + [SMALL_STATE(1165)] = 51506, + [SMALL_STATE(1166)] = 51534, + [SMALL_STATE(1167)] = 51574, + [SMALL_STATE(1168)] = 51614, + [SMALL_STATE(1169)] = 51654, + [SMALL_STATE(1170)] = 51694, + [SMALL_STATE(1171)] = 51734, + [SMALL_STATE(1172)] = 51774, + [SMALL_STATE(1173)] = 51814, + [SMALL_STATE(1174)] = 51854, + [SMALL_STATE(1175)] = 51894, + [SMALL_STATE(1176)] = 51934, + [SMALL_STATE(1177)] = 51974, + [SMALL_STATE(1178)] = 52014, + [SMALL_STATE(1179)] = 52054, + [SMALL_STATE(1180)] = 52088, + [SMALL_STATE(1181)] = 52128, + [SMALL_STATE(1182)] = 52156, + [SMALL_STATE(1183)] = 52206, + [SMALL_STATE(1184)] = 52246, + [SMALL_STATE(1185)] = 52286, + [SMALL_STATE(1186)] = 52326, + [SMALL_STATE(1187)] = 52366, + [SMALL_STATE(1188)] = 52406, + [SMALL_STATE(1189)] = 52446, + [SMALL_STATE(1190)] = 52486, + [SMALL_STATE(1191)] = 52526, + [SMALL_STATE(1192)] = 52566, + [SMALL_STATE(1193)] = 52606, + [SMALL_STATE(1194)] = 52634, + [SMALL_STATE(1195)] = 52674, + [SMALL_STATE(1196)] = 52714, + [SMALL_STATE(1197)] = 52746, + [SMALL_STATE(1198)] = 52786, + [SMALL_STATE(1199)] = 52826, + [SMALL_STATE(1200)] = 52866, + [SMALL_STATE(1201)] = 52906, + [SMALL_STATE(1202)] = 52934, + [SMALL_STATE(1203)] = 52974, + [SMALL_STATE(1204)] = 53022, + [SMALL_STATE(1205)] = 53058, + [SMALL_STATE(1206)] = 53098, + [SMALL_STATE(1207)] = 53138, + [SMALL_STATE(1208)] = 53184, + [SMALL_STATE(1209)] = 53212, + [SMALL_STATE(1210)] = 53258, + [SMALL_STATE(1211)] = 53302, + [SMALL_STATE(1212)] = 53344, + [SMALL_STATE(1213)] = 53372, + [SMALL_STATE(1214)] = 53412, + [SMALL_STATE(1215)] = 53461, + [SMALL_STATE(1216)] = 53488, + [SMALL_STATE(1217)] = 53517, + [SMALL_STATE(1218)] = 53544, + [SMALL_STATE(1219)] = 53587, + [SMALL_STATE(1220)] = 53628, + [SMALL_STATE(1221)] = 53667, + [SMALL_STATE(1222)] = 53704, + [SMALL_STATE(1223)] = 53739, + [SMALL_STATE(1224)] = 53772, + [SMALL_STATE(1225)] = 53803, + [SMALL_STATE(1226)] = 53848, + [SMALL_STATE(1227)] = 53893, + [SMALL_STATE(1228)] = 53920, + [SMALL_STATE(1229)] = 53965, + [SMALL_STATE(1230)] = 54010, + [SMALL_STATE(1231)] = 54037, + [SMALL_STATE(1232)] = 54082, + [SMALL_STATE(1233)] = 54131, + [SMALL_STATE(1234)] = 54158, + [SMALL_STATE(1235)] = 54203, + [SMALL_STATE(1236)] = 54248, + [SMALL_STATE(1237)] = 54275, + [SMALL_STATE(1238)] = 54302, + [SMALL_STATE(1239)] = 54329, + [SMALL_STATE(1240)] = 54356, + [SMALL_STATE(1241)] = 54399, + [SMALL_STATE(1242)] = 54444, + [SMALL_STATE(1243)] = 54471, + [SMALL_STATE(1244)] = 54514, + [SMALL_STATE(1245)] = 54559, + [SMALL_STATE(1246)] = 54604, + [SMALL_STATE(1247)] = 54649, + [SMALL_STATE(1248)] = 54694, + [SMALL_STATE(1249)] = 54737, + [SMALL_STATE(1250)] = 54782, + [SMALL_STATE(1251)] = 54827, + [SMALL_STATE(1252)] = 54870, + [SMALL_STATE(1253)] = 54915, + [SMALL_STATE(1254)] = 54955, + [SMALL_STATE(1255)] = 54991, + [SMALL_STATE(1256)] = 55031, + [SMALL_STATE(1257)] = 55071, + [SMALL_STATE(1258)] = 55115, + [SMALL_STATE(1259)] = 55155, + [SMALL_STATE(1260)] = 55195, + [SMALL_STATE(1261)] = 55237, + [SMALL_STATE(1262)] = 55277, + [SMALL_STATE(1263)] = 55308, + [SMALL_STATE(1264)] = 55347, + [SMALL_STATE(1265)] = 55378, + [SMALL_STATE(1266)] = 55419, + [SMALL_STATE(1267)] = 55460, + [SMALL_STATE(1268)] = 55501, + [SMALL_STATE(1269)] = 55532, + [SMALL_STATE(1270)] = 55563, + [SMALL_STATE(1271)] = 55604, + [SMALL_STATE(1272)] = 55645, + [SMALL_STATE(1273)] = 55686, + [SMALL_STATE(1274)] = 55727, + [SMALL_STATE(1275)] = 55768, + [SMALL_STATE(1276)] = 55810, + [SMALL_STATE(1277)] = 55848, + [SMALL_STATE(1278)] = 55876, + [SMALL_STATE(1279)] = 55918, + [SMALL_STATE(1280)] = 55960, + [SMALL_STATE(1281)] = 55998, + [SMALL_STATE(1282)] = 56031, + [SMALL_STATE(1283)] = 56054, + [SMALL_STATE(1284)] = 56093, + [SMALL_STATE(1285)] = 56120, + [SMALL_STATE(1286)] = 56159, + [SMALL_STATE(1287)] = 56198, + [SMALL_STATE(1288)] = 56237, + [SMALL_STATE(1289)] = 56260, + [SMALL_STATE(1290)] = 56287, + [SMALL_STATE(1291)] = 56310, + [SMALL_STATE(1292)] = 56342, + [SMALL_STATE(1293)] = 56374, + [SMALL_STATE(1294)] = 56406, + [SMALL_STATE(1295)] = 56438, + [SMALL_STATE(1296)] = 56475, + [SMALL_STATE(1297)] = 56508, + [SMALL_STATE(1298)] = 56529, + [SMALL_STATE(1299)] = 56566, + [SMALL_STATE(1300)] = 56587, + [SMALL_STATE(1301)] = 56608, + [SMALL_STATE(1302)] = 56629, + [SMALL_STATE(1303)] = 56666, + [SMALL_STATE(1304)] = 56687, + [SMALL_STATE(1305)] = 56726, + [SMALL_STATE(1306)] = 56763, + [SMALL_STATE(1307)] = 56784, + [SMALL_STATE(1308)] = 56821, + [SMALL_STATE(1309)] = 56854, + [SMALL_STATE(1310)] = 56875, + [SMALL_STATE(1311)] = 56912, + [SMALL_STATE(1312)] = 56949, + [SMALL_STATE(1313)] = 56986, + [SMALL_STATE(1314)] = 57013, + [SMALL_STATE(1315)] = 57050, + [SMALL_STATE(1316)] = 57087, + [SMALL_STATE(1317)] = 57124, + [SMALL_STATE(1318)] = 57154, + [SMALL_STATE(1319)] = 57184, + [SMALL_STATE(1320)] = 57214, + [SMALL_STATE(1321)] = 57248, + [SMALL_STATE(1322)] = 57282, + [SMALL_STATE(1323)] = 57312, + [SMALL_STATE(1324)] = 57341, + [SMALL_STATE(1325)] = 57370, + [SMALL_STATE(1326)] = 57395, + [SMALL_STATE(1327)] = 57424, + [SMALL_STATE(1328)] = 57455, + [SMALL_STATE(1329)] = 57480, + [SMALL_STATE(1330)] = 57511, + [SMALL_STATE(1331)] = 57540, + [SMALL_STATE(1332)] = 57563, + [SMALL_STATE(1333)] = 57592, + [SMALL_STATE(1334)] = 57615, + [SMALL_STATE(1335)] = 57646, + [SMALL_STATE(1336)] = 57675, + [SMALL_STATE(1337)] = 57698, + [SMALL_STATE(1338)] = 57727, + [SMALL_STATE(1339)] = 57760, + [SMALL_STATE(1340)] = 57791, + [SMALL_STATE(1341)] = 57820, + [SMALL_STATE(1342)] = 57849, + [SMALL_STATE(1343)] = 57880, + [SMALL_STATE(1344)] = 57909, + [SMALL_STATE(1345)] = 57938, + [SMALL_STATE(1346)] = 57969, + [SMALL_STATE(1347)] = 58000, + [SMALL_STATE(1348)] = 58029, + [SMALL_STATE(1349)] = 58058, + [SMALL_STATE(1350)] = 58087, + [SMALL_STATE(1351)] = 58116, + [SMALL_STATE(1352)] = 58147, + [SMALL_STATE(1353)] = 58176, + [SMALL_STATE(1354)] = 58205, + [SMALL_STATE(1355)] = 58234, + [SMALL_STATE(1356)] = 58262, + [SMALL_STATE(1357)] = 58294, + [SMALL_STATE(1358)] = 58322, + [SMALL_STATE(1359)] = 58344, + [SMALL_STATE(1360)] = 58372, + [SMALL_STATE(1361)] = 58396, + [SMALL_STATE(1362)] = 58428, + [SMALL_STATE(1363)] = 58460, + [SMALL_STATE(1364)] = 58482, + [SMALL_STATE(1365)] = 58514, + [SMALL_STATE(1366)] = 58538, + [SMALL_STATE(1367)] = 58566, + [SMALL_STATE(1368)] = 58594, + [SMALL_STATE(1369)] = 58618, + [SMALL_STATE(1370)] = 58641, + [SMALL_STATE(1371)] = 58664, + [SMALL_STATE(1372)] = 58693, + [SMALL_STATE(1373)] = 58722, + [SMALL_STATE(1374)] = 58743, + [SMALL_STATE(1375)] = 58760, + [SMALL_STATE(1376)] = 58785, + [SMALL_STATE(1377)] = 58814, + [SMALL_STATE(1378)] = 58831, + [SMALL_STATE(1379)] = 58848, + [SMALL_STATE(1380)] = 58877, + [SMALL_STATE(1381)] = 58906, + [SMALL_STATE(1382)] = 58927, + [SMALL_STATE(1383)] = 58944, + [SMALL_STATE(1384)] = 58965, + [SMALL_STATE(1385)] = 58994, + [SMALL_STATE(1386)] = 59011, + [SMALL_STATE(1387)] = 59028, + [SMALL_STATE(1388)] = 59057, + [SMALL_STATE(1389)] = 59078, + [SMALL_STATE(1390)] = 59099, + [SMALL_STATE(1391)] = 59128, + [SMALL_STATE(1392)] = 59145, + [SMALL_STATE(1393)] = 59166, + [SMALL_STATE(1394)] = 59193, + [SMALL_STATE(1395)] = 59210, + [SMALL_STATE(1396)] = 59231, + [SMALL_STATE(1397)] = 59248, + [SMALL_STATE(1398)] = 59264, + [SMALL_STATE(1399)] = 59286, + [SMALL_STATE(1400)] = 59312, + [SMALL_STATE(1401)] = 59328, + [SMALL_STATE(1402)] = 59354, + [SMALL_STATE(1403)] = 59370, + [SMALL_STATE(1404)] = 59396, + [SMALL_STATE(1405)] = 59412, + [SMALL_STATE(1406)] = 59438, + [SMALL_STATE(1407)] = 59464, + [SMALL_STATE(1408)] = 59480, + [SMALL_STATE(1409)] = 59506, + [SMALL_STATE(1410)] = 59528, + [SMALL_STATE(1411)] = 59544, + [SMALL_STATE(1412)] = 59560, + [SMALL_STATE(1413)] = 59586, + [SMALL_STATE(1414)] = 59612, + [SMALL_STATE(1415)] = 59632, + [SMALL_STATE(1416)] = 59648, + [SMALL_STATE(1417)] = 59674, + [SMALL_STATE(1418)] = 59690, + [SMALL_STATE(1419)] = 59716, + [SMALL_STATE(1420)] = 59742, + [SMALL_STATE(1421)] = 59760, + [SMALL_STATE(1422)] = 59780, + [SMALL_STATE(1423)] = 59806, + [SMALL_STATE(1424)] = 59828, + [SMALL_STATE(1425)] = 59850, + [SMALL_STATE(1426)] = 59870, + [SMALL_STATE(1427)] = 59886, + [SMALL_STATE(1428)] = 59912, + [SMALL_STATE(1429)] = 59927, + [SMALL_STATE(1430)] = 59942, + [SMALL_STATE(1431)] = 59965, + [SMALL_STATE(1432)] = 59982, + [SMALL_STATE(1433)] = 59997, + [SMALL_STATE(1434)] = 60020, + [SMALL_STATE(1435)] = 60043, + [SMALL_STATE(1436)] = 60058, + [SMALL_STATE(1437)] = 60073, + [SMALL_STATE(1438)] = 60096, + [SMALL_STATE(1439)] = 60119, + [SMALL_STATE(1440)] = 60142, + [SMALL_STATE(1441)] = 60165, + [SMALL_STATE(1442)] = 60188, + [SMALL_STATE(1443)] = 60211, + [SMALL_STATE(1444)] = 60226, + [SMALL_STATE(1445)] = 60249, + [SMALL_STATE(1446)] = 60268, + [SMALL_STATE(1447)] = 60291, + [SMALL_STATE(1448)] = 60314, + [SMALL_STATE(1449)] = 60337, + [SMALL_STATE(1450)] = 60352, + [SMALL_STATE(1451)] = 60375, + [SMALL_STATE(1452)] = 60392, + [SMALL_STATE(1453)] = 60407, + [SMALL_STATE(1454)] = 60422, + [SMALL_STATE(1455)] = 60439, + [SMALL_STATE(1456)] = 60462, + [SMALL_STATE(1457)] = 60479, + [SMALL_STATE(1458)] = 60502, + [SMALL_STATE(1459)] = 60525, + [SMALL_STATE(1460)] = 60540, + [SMALL_STATE(1461)] = 60563, + [SMALL_STATE(1462)] = 60582, + [SMALL_STATE(1463)] = 60597, + [SMALL_STATE(1464)] = 60612, + [SMALL_STATE(1465)] = 60627, + [SMALL_STATE(1466)] = 60650, + [SMALL_STATE(1467)] = 60664, + [SMALL_STATE(1468)] = 60678, + [SMALL_STATE(1469)] = 60692, + [SMALL_STATE(1470)] = 60710, + [SMALL_STATE(1471)] = 60728, + [SMALL_STATE(1472)] = 60742, + [SMALL_STATE(1473)] = 60756, + [SMALL_STATE(1474)] = 60770, + [SMALL_STATE(1475)] = 60788, + [SMALL_STATE(1476)] = 60802, + [SMALL_STATE(1477)] = 60816, + [SMALL_STATE(1478)] = 60834, + [SMALL_STATE(1479)] = 60852, + [SMALL_STATE(1480)] = 60866, + [SMALL_STATE(1481)] = 60880, + [SMALL_STATE(1482)] = 60898, + [SMALL_STATE(1483)] = 60912, + [SMALL_STATE(1484)] = 60930, + [SMALL_STATE(1485)] = 60948, + [SMALL_STATE(1486)] = 60962, + [SMALL_STATE(1487)] = 60976, + [SMALL_STATE(1488)] = 60996, + [SMALL_STATE(1489)] = 61010, + [SMALL_STATE(1490)] = 61028, + [SMALL_STATE(1491)] = 61042, + [SMALL_STATE(1492)] = 61059, + [SMALL_STATE(1493)] = 61076, + [SMALL_STATE(1494)] = 61093, + [SMALL_STATE(1495)] = 61112, + [SMALL_STATE(1496)] = 61129, + [SMALL_STATE(1497)] = 61146, + [SMALL_STATE(1498)] = 61163, + [SMALL_STATE(1499)] = 61180, + [SMALL_STATE(1500)] = 61191, + [SMALL_STATE(1501)] = 61208, + [SMALL_STATE(1502)] = 61225, + [SMALL_STATE(1503)] = 61242, + [SMALL_STATE(1504)] = 61259, + [SMALL_STATE(1505)] = 61276, + [SMALL_STATE(1506)] = 61293, + [SMALL_STATE(1507)] = 61312, + [SMALL_STATE(1508)] = 61329, + [SMALL_STATE(1509)] = 61346, + [SMALL_STATE(1510)] = 61363, + [SMALL_STATE(1511)] = 61380, + [SMALL_STATE(1512)] = 61393, + [SMALL_STATE(1513)] = 61410, + [SMALL_STATE(1514)] = 61427, + [SMALL_STATE(1515)] = 61444, + [SMALL_STATE(1516)] = 61461, + [SMALL_STATE(1517)] = 61480, + [SMALL_STATE(1518)] = 61497, + [SMALL_STATE(1519)] = 61514, + [SMALL_STATE(1520)] = 61528, + [SMALL_STATE(1521)] = 61544, + [SMALL_STATE(1522)] = 61560, + [SMALL_STATE(1523)] = 61574, + [SMALL_STATE(1524)] = 61588, + [SMALL_STATE(1525)] = 61604, + [SMALL_STATE(1526)] = 61620, + [SMALL_STATE(1527)] = 61634, + [SMALL_STATE(1528)] = 61650, + [SMALL_STATE(1529)] = 61666, + [SMALL_STATE(1530)] = 61680, + [SMALL_STATE(1531)] = 61694, + [SMALL_STATE(1532)] = 61710, + [SMALL_STATE(1533)] = 61726, + [SMALL_STATE(1534)] = 61740, + [SMALL_STATE(1535)] = 61756, + [SMALL_STATE(1536)] = 61768, + [SMALL_STATE(1537)] = 61784, + [SMALL_STATE(1538)] = 61800, + [SMALL_STATE(1539)] = 61816, + [SMALL_STATE(1540)] = 61830, + [SMALL_STATE(1541)] = 61844, + [SMALL_STATE(1542)] = 61858, + [SMALL_STATE(1543)] = 61872, + [SMALL_STATE(1544)] = 61886, + [SMALL_STATE(1545)] = 61902, + [SMALL_STATE(1546)] = 61916, + [SMALL_STATE(1547)] = 61932, + [SMALL_STATE(1548)] = 61948, + [SMALL_STATE(1549)] = 61962, + [SMALL_STATE(1550)] = 61976, + [SMALL_STATE(1551)] = 61990, + [SMALL_STATE(1552)] = 62006, + [SMALL_STATE(1553)] = 62020, + [SMALL_STATE(1554)] = 62034, + [SMALL_STATE(1555)] = 62050, + [SMALL_STATE(1556)] = 62064, + [SMALL_STATE(1557)] = 62078, + [SMALL_STATE(1558)] = 62094, + [SMALL_STATE(1559)] = 62110, + [SMALL_STATE(1560)] = 62126, + [SMALL_STATE(1561)] = 62142, + [SMALL_STATE(1562)] = 62158, + [SMALL_STATE(1563)] = 62172, + [SMALL_STATE(1564)] = 62185, + [SMALL_STATE(1565)] = 62198, + [SMALL_STATE(1566)] = 62207, + [SMALL_STATE(1567)] = 62216, + [SMALL_STATE(1568)] = 62229, + [SMALL_STATE(1569)] = 62242, + [SMALL_STATE(1570)] = 62255, + [SMALL_STATE(1571)] = 62268, + [SMALL_STATE(1572)] = 62281, + [SMALL_STATE(1573)] = 62294, + [SMALL_STATE(1574)] = 62307, + [SMALL_STATE(1575)] = 62320, + [SMALL_STATE(1576)] = 62333, + [SMALL_STATE(1577)] = 62346, + [SMALL_STATE(1578)] = 62359, + [SMALL_STATE(1579)] = 62372, + [SMALL_STATE(1580)] = 62385, + [SMALL_STATE(1581)] = 62398, + [SMALL_STATE(1582)] = 62411, + [SMALL_STATE(1583)] = 62424, + [SMALL_STATE(1584)] = 62437, + [SMALL_STATE(1585)] = 62446, + [SMALL_STATE(1586)] = 62459, + [SMALL_STATE(1587)] = 62472, + [SMALL_STATE(1588)] = 62485, + [SMALL_STATE(1589)] = 62494, + [SMALL_STATE(1590)] = 62507, + [SMALL_STATE(1591)] = 62520, + [SMALL_STATE(1592)] = 62533, + [SMALL_STATE(1593)] = 62546, + [SMALL_STATE(1594)] = 62559, + [SMALL_STATE(1595)] = 62572, + [SMALL_STATE(1596)] = 62585, + [SMALL_STATE(1597)] = 62598, + [SMALL_STATE(1598)] = 62611, + [SMALL_STATE(1599)] = 62624, + [SMALL_STATE(1600)] = 62637, + [SMALL_STATE(1601)] = 62650, + [SMALL_STATE(1602)] = 62663, + [SMALL_STATE(1603)] = 62676, + [SMALL_STATE(1604)] = 62689, + [SMALL_STATE(1605)] = 62702, + [SMALL_STATE(1606)] = 62715, + [SMALL_STATE(1607)] = 62728, + [SMALL_STATE(1608)] = 62741, + [SMALL_STATE(1609)] = 62754, + [SMALL_STATE(1610)] = 62767, + [SMALL_STATE(1611)] = 62776, + [SMALL_STATE(1612)] = 62789, + [SMALL_STATE(1613)] = 62798, + [SMALL_STATE(1614)] = 62811, + [SMALL_STATE(1615)] = 62824, + [SMALL_STATE(1616)] = 62837, + [SMALL_STATE(1617)] = 62850, + [SMALL_STATE(1618)] = 62863, + [SMALL_STATE(1619)] = 62874, + [SMALL_STATE(1620)] = 62887, + [SMALL_STATE(1621)] = 62900, + [SMALL_STATE(1622)] = 62913, + [SMALL_STATE(1623)] = 62922, + [SMALL_STATE(1624)] = 62935, + [SMALL_STATE(1625)] = 62948, + [SMALL_STATE(1626)] = 62961, + [SMALL_STATE(1627)] = 62974, + [SMALL_STATE(1628)] = 62987, + [SMALL_STATE(1629)] = 63000, + [SMALL_STATE(1630)] = 63013, + [SMALL_STATE(1631)] = 63026, + [SMALL_STATE(1632)] = 63039, + [SMALL_STATE(1633)] = 63052, + [SMALL_STATE(1634)] = 63065, + [SMALL_STATE(1635)] = 63078, + [SMALL_STATE(1636)] = 63091, + [SMALL_STATE(1637)] = 63104, + [SMALL_STATE(1638)] = 63117, + [SMALL_STATE(1639)] = 63130, + [SMALL_STATE(1640)] = 63143, + [SMALL_STATE(1641)] = 63154, + [SMALL_STATE(1642)] = 63165, + [SMALL_STATE(1643)] = 63174, + [SMALL_STATE(1644)] = 63187, + [SMALL_STATE(1645)] = 63200, + [SMALL_STATE(1646)] = 63213, + [SMALL_STATE(1647)] = 63226, + [SMALL_STATE(1648)] = 63239, + [SMALL_STATE(1649)] = 63252, + [SMALL_STATE(1650)] = 63263, + [SMALL_STATE(1651)] = 63276, + [SMALL_STATE(1652)] = 63289, + [SMALL_STATE(1653)] = 63302, + [SMALL_STATE(1654)] = 63315, + [SMALL_STATE(1655)] = 63328, + [SMALL_STATE(1656)] = 63341, + [SMALL_STATE(1657)] = 63350, + [SMALL_STATE(1658)] = 63359, + [SMALL_STATE(1659)] = 63372, + [SMALL_STATE(1660)] = 63383, + [SMALL_STATE(1661)] = 63396, + [SMALL_STATE(1662)] = 63409, + [SMALL_STATE(1663)] = 63422, + [SMALL_STATE(1664)] = 63435, + [SMALL_STATE(1665)] = 63448, + [SMALL_STATE(1666)] = 63461, + [SMALL_STATE(1667)] = 63474, + [SMALL_STATE(1668)] = 63487, + [SMALL_STATE(1669)] = 63500, + [SMALL_STATE(1670)] = 63513, + [SMALL_STATE(1671)] = 63526, + [SMALL_STATE(1672)] = 63535, + [SMALL_STATE(1673)] = 63548, + [SMALL_STATE(1674)] = 63561, + [SMALL_STATE(1675)] = 63574, + [SMALL_STATE(1676)] = 63587, + [SMALL_STATE(1677)] = 63600, + [SMALL_STATE(1678)] = 63613, + [SMALL_STATE(1679)] = 63626, + [SMALL_STATE(1680)] = 63636, + [SMALL_STATE(1681)] = 63646, + [SMALL_STATE(1682)] = 63656, + [SMALL_STATE(1683)] = 63666, + [SMALL_STATE(1684)] = 63674, + [SMALL_STATE(1685)] = 63684, + [SMALL_STATE(1686)] = 63694, + [SMALL_STATE(1687)] = 63702, + [SMALL_STATE(1688)] = 63712, + [SMALL_STATE(1689)] = 63720, + [SMALL_STATE(1690)] = 63730, + [SMALL_STATE(1691)] = 63740, + [SMALL_STATE(1692)] = 63750, + [SMALL_STATE(1693)] = 63760, + [SMALL_STATE(1694)] = 63770, + [SMALL_STATE(1695)] = 63778, + [SMALL_STATE(1696)] = 63786, + [SMALL_STATE(1697)] = 63796, + [SMALL_STATE(1698)] = 63806, + [SMALL_STATE(1699)] = 63816, + [SMALL_STATE(1700)] = 63824, + [SMALL_STATE(1701)] = 63834, + [SMALL_STATE(1702)] = 63842, + [SMALL_STATE(1703)] = 63852, + [SMALL_STATE(1704)] = 63862, + [SMALL_STATE(1705)] = 63872, + [SMALL_STATE(1706)] = 63882, + [SMALL_STATE(1707)] = 63892, + [SMALL_STATE(1708)] = 63900, + [SMALL_STATE(1709)] = 63910, + [SMALL_STATE(1710)] = 63920, + [SMALL_STATE(1711)] = 63930, + [SMALL_STATE(1712)] = 63940, + [SMALL_STATE(1713)] = 63948, + [SMALL_STATE(1714)] = 63958, + [SMALL_STATE(1715)] = 63968, + [SMALL_STATE(1716)] = 63978, + [SMALL_STATE(1717)] = 63988, + [SMALL_STATE(1718)] = 63998, + [SMALL_STATE(1719)] = 64008, + [SMALL_STATE(1720)] = 64018, + [SMALL_STATE(1721)] = 64028, + [SMALL_STATE(1722)] = 64038, + [SMALL_STATE(1723)] = 64048, + [SMALL_STATE(1724)] = 64058, + [SMALL_STATE(1725)] = 64068, + [SMALL_STATE(1726)] = 64078, + [SMALL_STATE(1727)] = 64088, + [SMALL_STATE(1728)] = 64098, + [SMALL_STATE(1729)] = 64108, + [SMALL_STATE(1730)] = 64118, + [SMALL_STATE(1731)] = 64128, + [SMALL_STATE(1732)] = 64138, + [SMALL_STATE(1733)] = 64146, + [SMALL_STATE(1734)] = 64156, + [SMALL_STATE(1735)] = 64166, + [SMALL_STATE(1736)] = 64174, + [SMALL_STATE(1737)] = 64184, + [SMALL_STATE(1738)] = 64194, + [SMALL_STATE(1739)] = 64204, + [SMALL_STATE(1740)] = 64214, + [SMALL_STATE(1741)] = 64224, + [SMALL_STATE(1742)] = 64234, + [SMALL_STATE(1743)] = 64244, + [SMALL_STATE(1744)] = 64254, + [SMALL_STATE(1745)] = 64262, + [SMALL_STATE(1746)] = 64272, + [SMALL_STATE(1747)] = 64282, + [SMALL_STATE(1748)] = 64292, + [SMALL_STATE(1749)] = 64300, + [SMALL_STATE(1750)] = 64310, + [SMALL_STATE(1751)] = 64320, + [SMALL_STATE(1752)] = 64330, + [SMALL_STATE(1753)] = 64340, + [SMALL_STATE(1754)] = 64350, + [SMALL_STATE(1755)] = 64358, + [SMALL_STATE(1756)] = 64368, + [SMALL_STATE(1757)] = 64378, + [SMALL_STATE(1758)] = 64388, + [SMALL_STATE(1759)] = 64396, + [SMALL_STATE(1760)] = 64404, + [SMALL_STATE(1761)] = 64414, + [SMALL_STATE(1762)] = 64424, + [SMALL_STATE(1763)] = 64434, + [SMALL_STATE(1764)] = 64444, + [SMALL_STATE(1765)] = 64452, + [SMALL_STATE(1766)] = 64460, + [SMALL_STATE(1767)] = 64470, + [SMALL_STATE(1768)] = 64477, + [SMALL_STATE(1769)] = 64484, + [SMALL_STATE(1770)] = 64491, + [SMALL_STATE(1771)] = 64498, + [SMALL_STATE(1772)] = 64505, + [SMALL_STATE(1773)] = 64512, + [SMALL_STATE(1774)] = 64519, + [SMALL_STATE(1775)] = 64526, + [SMALL_STATE(1776)] = 64533, + [SMALL_STATE(1777)] = 64540, + [SMALL_STATE(1778)] = 64547, + [SMALL_STATE(1779)] = 64554, + [SMALL_STATE(1780)] = 64561, + [SMALL_STATE(1781)] = 64568, + [SMALL_STATE(1782)] = 64575, + [SMALL_STATE(1783)] = 64582, + [SMALL_STATE(1784)] = 64589, + [SMALL_STATE(1785)] = 64596, + [SMALL_STATE(1786)] = 64603, + [SMALL_STATE(1787)] = 64610, + [SMALL_STATE(1788)] = 64617, + [SMALL_STATE(1789)] = 64624, + [SMALL_STATE(1790)] = 64631, + [SMALL_STATE(1791)] = 64638, + [SMALL_STATE(1792)] = 64645, + [SMALL_STATE(1793)] = 64652, + [SMALL_STATE(1794)] = 64659, + [SMALL_STATE(1795)] = 64666, + [SMALL_STATE(1796)] = 64673, + [SMALL_STATE(1797)] = 64680, + [SMALL_STATE(1798)] = 64687, + [SMALL_STATE(1799)] = 64694, + [SMALL_STATE(1800)] = 64701, + [SMALL_STATE(1801)] = 64708, + [SMALL_STATE(1802)] = 64715, + [SMALL_STATE(1803)] = 64722, + [SMALL_STATE(1804)] = 64729, + [SMALL_STATE(1805)] = 64736, + [SMALL_STATE(1806)] = 64743, + [SMALL_STATE(1807)] = 64750, + [SMALL_STATE(1808)] = 64757, + [SMALL_STATE(1809)] = 64764, + [SMALL_STATE(1810)] = 64771, + [SMALL_STATE(1811)] = 64778, + [SMALL_STATE(1812)] = 64785, + [SMALL_STATE(1813)] = 64792, + [SMALL_STATE(1814)] = 64799, + [SMALL_STATE(1815)] = 64806, + [SMALL_STATE(1816)] = 64813, + [SMALL_STATE(1817)] = 64820, + [SMALL_STATE(1818)] = 64827, + [SMALL_STATE(1819)] = 64834, + [SMALL_STATE(1820)] = 64841, + [SMALL_STATE(1821)] = 64848, + [SMALL_STATE(1822)] = 64855, + [SMALL_STATE(1823)] = 64862, + [SMALL_STATE(1824)] = 64869, + [SMALL_STATE(1825)] = 64876, + [SMALL_STATE(1826)] = 64883, + [SMALL_STATE(1827)] = 64890, + [SMALL_STATE(1828)] = 64897, + [SMALL_STATE(1829)] = 64904, + [SMALL_STATE(1830)] = 64911, + [SMALL_STATE(1831)] = 64918, + [SMALL_STATE(1832)] = 64925, + [SMALL_STATE(1833)] = 64932, + [SMALL_STATE(1834)] = 64939, + [SMALL_STATE(1835)] = 64946, + [SMALL_STATE(1836)] = 64953, + [SMALL_STATE(1837)] = 64960, + [SMALL_STATE(1838)] = 64967, + [SMALL_STATE(1839)] = 64974, + [SMALL_STATE(1840)] = 64981, + [SMALL_STATE(1841)] = 64988, + [SMALL_STATE(1842)] = 64995, + [SMALL_STATE(1843)] = 65002, + [SMALL_STATE(1844)] = 65009, + [SMALL_STATE(1845)] = 65016, + [SMALL_STATE(1846)] = 65023, + [SMALL_STATE(1847)] = 65030, + [SMALL_STATE(1848)] = 65037, + [SMALL_STATE(1849)] = 65044, + [SMALL_STATE(1850)] = 65051, + [SMALL_STATE(1851)] = 65058, + [SMALL_STATE(1852)] = 65065, + [SMALL_STATE(1853)] = 65072, + [SMALL_STATE(1854)] = 65079, + [SMALL_STATE(1855)] = 65086, + [SMALL_STATE(1856)] = 65093, + [SMALL_STATE(1857)] = 65100, + [SMALL_STATE(1858)] = 65107, + [SMALL_STATE(1859)] = 65114, + [SMALL_STATE(1860)] = 65121, + [SMALL_STATE(1861)] = 65128, + [SMALL_STATE(1862)] = 65135, + [SMALL_STATE(1863)] = 65142, + [SMALL_STATE(1864)] = 65149, + [SMALL_STATE(1865)] = 65156, + [SMALL_STATE(1866)] = 65163, + [SMALL_STATE(1867)] = 65170, + [SMALL_STATE(1868)] = 65177, + [SMALL_STATE(1869)] = 65184, + [SMALL_STATE(1870)] = 65191, + [SMALL_STATE(1871)] = 65198, + [SMALL_STATE(1872)] = 65205, + [SMALL_STATE(1873)] = 65212, + [SMALL_STATE(1874)] = 65219, + [SMALL_STATE(1875)] = 65226, + [SMALL_STATE(1876)] = 65233, + [SMALL_STATE(1877)] = 65240, + [SMALL_STATE(1878)] = 65247, + [SMALL_STATE(1879)] = 65254, + [SMALL_STATE(1880)] = 65261, + [SMALL_STATE(1881)] = 65268, + [SMALL_STATE(1882)] = 65275, + [SMALL_STATE(1883)] = 65282, + [SMALL_STATE(1884)] = 65289, + [SMALL_STATE(1885)] = 65296, + [SMALL_STATE(1886)] = 65303, + [SMALL_STATE(1887)] = 65310, + [SMALL_STATE(1888)] = 65317, + [SMALL_STATE(1889)] = 65324, + [SMALL_STATE(1890)] = 65331, + [SMALL_STATE(1891)] = 65338, + [SMALL_STATE(1892)] = 65345, + [SMALL_STATE(1893)] = 65352, + [SMALL_STATE(1894)] = 65359, + [SMALL_STATE(1895)] = 65366, + [SMALL_STATE(1896)] = 65373, + [SMALL_STATE(1897)] = 65380, + [SMALL_STATE(1898)] = 65387, + [SMALL_STATE(1899)] = 65394, + [SMALL_STATE(1900)] = 65401, + [SMALL_STATE(1901)] = 65408, + [SMALL_STATE(1902)] = 65415, + [SMALL_STATE(1903)] = 65422, + [SMALL_STATE(1904)] = 65429, + [SMALL_STATE(1905)] = 65436, + [SMALL_STATE(1906)] = 65443, + [SMALL_STATE(1907)] = 65450, + [SMALL_STATE(1908)] = 65457, + [SMALL_STATE(1909)] = 65464, + [SMALL_STATE(1910)] = 65471, + [SMALL_STATE(1911)] = 65478, + [SMALL_STATE(1912)] = 65485, + [SMALL_STATE(1913)] = 65492, + [SMALL_STATE(1914)] = 65499, + [SMALL_STATE(1915)] = 65506, + [SMALL_STATE(1916)] = 65513, + [SMALL_STATE(1917)] = 65520, + [SMALL_STATE(1918)] = 65527, + [SMALL_STATE(1919)] = 65534, + [SMALL_STATE(1920)] = 65541, + [SMALL_STATE(1921)] = 65548, + [SMALL_STATE(1922)] = 65555, + [SMALL_STATE(1923)] = 65562, + [SMALL_STATE(1924)] = 65569, + [SMALL_STATE(1925)] = 65576, + [SMALL_STATE(1926)] = 65583, + [SMALL_STATE(1927)] = 65590, + [SMALL_STATE(1928)] = 65597, + [SMALL_STATE(1929)] = 65604, + [SMALL_STATE(1930)] = 65611, + [SMALL_STATE(1931)] = 65618, + [SMALL_STATE(1932)] = 65625, + [SMALL_STATE(1933)] = 65632, + [SMALL_STATE(1934)] = 65639, + [SMALL_STATE(1935)] = 65646, + [SMALL_STATE(1936)] = 65653, + [SMALL_STATE(1937)] = 65660, + [SMALL_STATE(1938)] = 65667, + [SMALL_STATE(1939)] = 65674, + [SMALL_STATE(1940)] = 65681, + [SMALL_STATE(1941)] = 65688, + [SMALL_STATE(1942)] = 65695, + [SMALL_STATE(1943)] = 65702, + [SMALL_STATE(1944)] = 65709, + [SMALL_STATE(1945)] = 65716, + [SMALL_STATE(1946)] = 65723, + [SMALL_STATE(1947)] = 65730, + [SMALL_STATE(1948)] = 65737, + [SMALL_STATE(1949)] = 65744, + [SMALL_STATE(1950)] = 65751, + [SMALL_STATE(1951)] = 65758, + [SMALL_STATE(1952)] = 65765, + [SMALL_STATE(1953)] = 65772, + [SMALL_STATE(1954)] = 65779, + [SMALL_STATE(1955)] = 65786, + [SMALL_STATE(1956)] = 65793, + [SMALL_STATE(1957)] = 65800, + [SMALL_STATE(1958)] = 65807, + [SMALL_STATE(1959)] = 65814, + [SMALL_STATE(1960)] = 65821, + [SMALL_STATE(1961)] = 65828, + [SMALL_STATE(1962)] = 65835, + [SMALL_STATE(1963)] = 65842, + [SMALL_STATE(1964)] = 65849, + [SMALL_STATE(1965)] = 65856, + [SMALL_STATE(1966)] = 65863, + [SMALL_STATE(1967)] = 65870, + [SMALL_STATE(1968)] = 65877, + [SMALL_STATE(1969)] = 65884, + [SMALL_STATE(1970)] = 65891, + [SMALL_STATE(1971)] = 65898, + [SMALL_STATE(1972)] = 65905, + [SMALL_STATE(1973)] = 65912, + [SMALL_STATE(1974)] = 65919, + [SMALL_STATE(1975)] = 65926, + [SMALL_STATE(1976)] = 65933, + [SMALL_STATE(1977)] = 65940, + [SMALL_STATE(1978)] = 65947, + [SMALL_STATE(1979)] = 65954, + [SMALL_STATE(1980)] = 65961, + [SMALL_STATE(1981)] = 65968, + [SMALL_STATE(1982)] = 65975, + [SMALL_STATE(1983)] = 65982, + [SMALL_STATE(1984)] = 65989, + [SMALL_STATE(1985)] = 65996, + [SMALL_STATE(1986)] = 66003, + [SMALL_STATE(1987)] = 66010, + [SMALL_STATE(1988)] = 66017, + [SMALL_STATE(1989)] = 66024, + [SMALL_STATE(1990)] = 66031, + [SMALL_STATE(1991)] = 66038, + [SMALL_STATE(1992)] = 66045, + [SMALL_STATE(1993)] = 66052, + [SMALL_STATE(1994)] = 66059, + [SMALL_STATE(1995)] = 66066, + [SMALL_STATE(1996)] = 66073, + [SMALL_STATE(1997)] = 66080, + [SMALL_STATE(1998)] = 66087, + [SMALL_STATE(1999)] = 66094, + [SMALL_STATE(2000)] = 66101, + [SMALL_STATE(2001)] = 66108, + [SMALL_STATE(2002)] = 66115, + [SMALL_STATE(2003)] = 66122, + [SMALL_STATE(2004)] = 66129, + [SMALL_STATE(2005)] = 66136, + [SMALL_STATE(2006)] = 66143, + [SMALL_STATE(2007)] = 66150, + [SMALL_STATE(2008)] = 66157, + [SMALL_STATE(2009)] = 66164, + [SMALL_STATE(2010)] = 66171, + [SMALL_STATE(2011)] = 66178, + [SMALL_STATE(2012)] = 66185, + [SMALL_STATE(2013)] = 66192, + [SMALL_STATE(2014)] = 66199, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -117171,996 +116286,996 @@ 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, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 42), + [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 41), [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 42), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 41), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1903), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(886), [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(613), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1936), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(376), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(405), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(993), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(886), [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(689), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(522), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(680), [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(27), [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(376), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(993), [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1761), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 49), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 49), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 57), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 57), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 63), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 63), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 65), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 65), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 77), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 77), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 49), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 49), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 82), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 82), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 86), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 86), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 92), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 92), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 77), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 77), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 101), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 101), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 112), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 112), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 62), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 62), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 41), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 41), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 42), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 42), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 95), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 95), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 96), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 96), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 98), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 98), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 68), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 68), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 69), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 69), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 72), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 72), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 73), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 73), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 42), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 42), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 40), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 40), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 38), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 38), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(804), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(386), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(625), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(625), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(627), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(251), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(552), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1719), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(25), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1724), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1721), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(572), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1847), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1726), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(379), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1978), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(483), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1851), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1854), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1833), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1697), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1910), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(549), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(611), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1864), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1892), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1843), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1466), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(693), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1679), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1540), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(693), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(689), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(796), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(107), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1720), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1746), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(613), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1798), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1722), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(380), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2016), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(464), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1791), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1814), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1923), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1750), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1902), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(792), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(23), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1689), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1693), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(609), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1809), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1702), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(331), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2000), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(480), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1984), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1918), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1996), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(799), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(178), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(39), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1745), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1754), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(615), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1780), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1747), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(376), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2019), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(471), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 80), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 80), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 84), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 84), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 89), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 89), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 75), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 75), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 48), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 48), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 99), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 99), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 110), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 110), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 48), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 48), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 75), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 75), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 41), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 41), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 39), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 39), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 40), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 40), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 42), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 42), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 70), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 70), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 71), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 71), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 41), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 41), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 72), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 72), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 93), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 93), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 94), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 94), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 96), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 96), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 37), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 37), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(793), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(378), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(541), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(541), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(555), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(245), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(536), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1719), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(27), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1755), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1721), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(564), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1959), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1757), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(372), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1970), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(475), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1983), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1987), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1819), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1724), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1824), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(540), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(500), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2013), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1899), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1456), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(684), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1618), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1531), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(684), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(680), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(786), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(83), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1720), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1740), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(599), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1938), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(314), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2008), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(468), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1858), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1870), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1911), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1742), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1868), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(783), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(23), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1691), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1693), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1956), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1711), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(337), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1992), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(458), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1953), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1865), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1890), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1761), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(790), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(176), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1739), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1749), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(601), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2004), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1741), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(313), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2011), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(464), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1945), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1951), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1941), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1751), [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1801), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1807), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1951), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1758), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(788), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(230), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1742), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(532), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1878), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1736), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2022), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1909), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(718), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(552), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1774] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(997), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(778), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(150), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1681), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(522), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1881), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1733), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1946), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1910), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(715), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(536), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1766] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(988), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(340), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(840), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(392), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(616), - [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(616), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(617), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(620), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(618), - [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(619), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1864), - [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1892), - [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1843), - [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1466), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(693), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1679), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(693), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(689), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 42), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 42), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1210), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 58), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 58), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 42), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 85), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 59), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 59), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 130), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 130), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 107), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 107), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(322), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(827), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(379), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(604), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(604), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(605), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(609), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(606), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(607), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2013), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1848), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1899), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1456), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(684), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1618), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1531), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(684), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(680), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 41), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 41), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 41), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 57), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 57), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 86), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 86), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 123), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 123), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 107), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 107), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 118), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 118), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 128), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 128), + [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 105), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 105), [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), @@ -118169,1402 +117284,1398 @@ static const TSParseActionEntry ts_parse_actions[] = { [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 38), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 38), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 70), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 70), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 47), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 47), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 46), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 46), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 37), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 37), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 68), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 68), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(753), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(720), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1778), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 55), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 55), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(756), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(720), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1778), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 46), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 46), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(736), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(711), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1898), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(744), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(711), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1898), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 56), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 56), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 54), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 54), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 81), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 81), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 56), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 56), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 81), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 81), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 54), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 54), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(997), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 60), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 60), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 79), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 79), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 52), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 52), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 55), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 55), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 80), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 80), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 80), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 80), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 98), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 98), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 44), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 44), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 44), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 44), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 71), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 71), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1985), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 97), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 97), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 52), - [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), SHIFT(1985), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1985), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 79), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 79), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 79), SHIFT(1985), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1985), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1588), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(946), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3061] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(997), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(998), - [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(996), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 78), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 78), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 46), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 64), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 116), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 117), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1133), - [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1134), - [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1132), - [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1147), - [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1143), - [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1146), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 55), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 55), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 53), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 53), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 79), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 79), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 79), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 79), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 55), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 55), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 37), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 37), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 53), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 53), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(988), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 37), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 37), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 77), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 77), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 51), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 51), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 71), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 71), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 78), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 78), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 41), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 41), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 41), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 41), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 72), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 72), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 96), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 96), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 78), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 78), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 43), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 43), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 43), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 43), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 42), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 42), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 69), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 69), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 95), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 95), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1912), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 51), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 51), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 51), SHIFT(1912), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1912), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1912), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 77), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 77), + [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 77), SHIFT(1912), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1644), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(942), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3056] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(988), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(990), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 76), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 76), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 45), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 115), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 101), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 113), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 81), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1129), + [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1130), + [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1127), + [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1131), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1136), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1123), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 44), - [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(736), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(736), - [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(736), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), SHIFT(1140), - [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), SHIFT(1141), - [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(736), - [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(736), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), SHIFT(736), - [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), SHIFT(736), - [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1135), - [3433] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(736), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1129), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1130), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1131), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1901), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 42), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 61), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 61), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 111), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 111), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 113), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 113), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 93), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 93), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 111), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 111), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 61), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 61), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 42), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), - [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 42), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 111), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 111), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 61), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 61), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 42), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 43), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 37), SHIFT(723), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1124), + [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(723), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), SHIFT(723), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(723), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 37), SHIFT(1122), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), SHIFT(1125), + [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(723), + [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1126), + [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(723), + [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(723), + [3434] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(723), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1134), + [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1135), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1886), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 41), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 109), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 109), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 88), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 88), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 111), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 111), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 91), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 91), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 109), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 109), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 88), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 88), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 109), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 109), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 41), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 88), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 88), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 41), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 41), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 113), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 113), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 53), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 53), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 111), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 111), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 52), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 52), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 91), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 91), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 111), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 111), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 91), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 91), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 113), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 113), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 61), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 61), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 113), - [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 113), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 99), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 99), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 48), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 94), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 44), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 98), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 98), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 76), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 35), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 45), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 102), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 3, 0, 102), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), SHIFT_REPEAT(1361), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), SHIFT_REPEAT(1288), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 123), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 87), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 51), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 128), SHIFT_REPEAT(1385), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 128), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 118), SHIFT_REPEAT(1431), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 118), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 108), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 87), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 118), SHIFT_REPEAT(1419), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 118), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 108), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 119), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 132), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 122), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 122), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 87), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 119), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 129), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 124), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 100), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 131), SHIFT_REPEAT(1969), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 131), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 127), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 87), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 66), SHIFT_REPEAT(1156), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 66), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 132), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 124), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 114), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 51), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 98), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 74), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 43), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 74), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 43), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 73), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 74), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 98), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 43), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 43), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 74), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 73), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 88), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 88), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 73), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 73), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 111), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 111), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 97), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 97), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 91), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 91), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 42), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 42), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 71), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 71), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 74), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 47), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 72), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 72), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 96), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 96), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 41), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 41), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 35), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 44), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 92), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 41), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 41), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 43), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1276), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 49), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 49), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 100), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 3, 0, 100), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1353), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 49), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 49), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 116), SHIFT_REPEAT(1425), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 116), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 121), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 85), + [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 126), SHIFT_REPEAT(1389), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 126), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 85), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 50), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 116), SHIFT_REPEAT(1421), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 116), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 106), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 117), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 106), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 120), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 117), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 127), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 120), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 129), SHIFT_REPEAT(1864), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 129), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 130), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 85), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 130), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1148), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 98), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 122), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 125), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 85), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 122), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 112), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 50), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 71), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 71), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4947] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 72), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 41), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 42), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 42), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 71), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 72), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 71), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 43), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 98), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 42), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5217] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 74), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 73), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 98), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 73), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 73), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 98), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 96), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 96), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 42), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 96), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 72), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 42), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 72), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 71), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 96), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 96), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 72), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 42), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), }; #ifdef __cplusplus