diff --git a/grammar.js b/grammar.js index a166e6b4..9f3a452c 100644 --- a/grammar.js +++ b/grammar.js @@ -418,6 +418,7 @@ module.exports = grammar({ pointer_declarator: $ => prec.dynamic(1, prec.right(seq( optional($.ms_based_modifier), + optional($.ms_call_modifier), '*', repeat($.ms_pointer_modifier), repeat($.type_qualifier), @@ -425,6 +426,7 @@ module.exports = grammar({ ))), pointer_field_declarator: $ => prec.dynamic(1, prec.right(seq( optional($.ms_based_modifier), + optional($.ms_call_modifier), '*', repeat($.ms_pointer_modifier), repeat($.type_qualifier), @@ -432,6 +434,7 @@ module.exports = grammar({ ))), pointer_type_declarator: $ => prec.dynamic(1, prec.right(seq( optional($.ms_based_modifier), + optional($.ms_call_modifier), '*', repeat($.ms_pointer_modifier), repeat($.type_qualifier), diff --git a/src/grammar.json b/src/grammar.json index cd1a857e..70b56743 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2855,6 +2855,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "*" @@ -2906,6 +2918,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "*" @@ -2957,6 +2981,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "*" diff --git a/src/node-types.json b/src/node-types.json index 2b4cc56b..bbca88b0 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2496,6 +2496,10 @@ "type": "ms_based_modifier", "named": true }, + { + "type": "ms_call_modifier", + "named": true + }, { "type": "ms_pointer_modifier", "named": true diff --git a/src/parser.c b/src/parser.c index bd075176..fa2b64f1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -#include "tree_sitter/parser.h" +#include #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -14,7 +14,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1879 +#define STATE_COUNT 1897 #define LARGE_STATE_COUNT 540 #define SYMBOL_COUNT 330 #define ALIAS_COUNT 3 @@ -22,9 +22,9 @@ #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 122 +#define PRODUCTION_ID_COUNT 123 -enum ts_symbol_identifiers { +enum { sym_identifier = 1, aux_sym_preproc_include_token1 = 2, aux_sym_preproc_include_token2 = 3, @@ -2372,7 +2372,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum ts_field_identifiers { +enum { field_alternative = 1, field_argument = 2, field_arguments = 3, @@ -2561,16 +2561,17 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [109] = {.index = 201, .length = 1}, [110] = {.index = 202, .length = 4}, [111] = {.index = 206, .length = 3}, - [112] = {.index = 209, .length = 2}, - [113] = {.index = 211, .length = 2}, - [114] = {.index = 33, .length = 1}, - [115] = {.index = 213, .length = 5}, - [116] = {.index = 218, .length = 4}, - [117] = {.index = 222, .length = 2}, - [118] = {.index = 224, .length = 2}, - [119] = {.index = 226, .length = 5}, - [120] = {.index = 231, .length = 2}, - [121] = {.index = 233, .length = 3}, + [112] = {.index = 209, .length = 1}, + [113] = {.index = 210, .length = 2}, + [114] = {.index = 212, .length = 2}, + [115] = {.index = 33, .length = 1}, + [116] = {.index = 214, .length = 5}, + [117] = {.index = 219, .length = 4}, + [118] = {.index = 223, .length = 2}, + [119] = {.index = 225, .length = 2}, + [120] = {.index = 227, .length = 5}, + [121] = {.index = 232, .length = 2}, + [122] = {.index = 234, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2889,38 +2890,40 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_input_operands, 5}, {field_output_operands, 4}, [209] = + {field_declarator, 5}, + [210] = {field_constraint, 0}, {field_value, 2}, - [211] = + [212] = {field_register, 1}, {field_register, 2, .inherited = true}, - [213] = + [214] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [218] = + [219] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [222] = + [223] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [224] = + [225] = {field_label, 1}, {field_label, 2, .inherited = true}, - [226] = + [227] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [231] = + [232] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [233] = + [234] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -2989,55 +2992,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, + [3] = 3, [4] = 2, - [5] = 5, - [6] = 2, - [7] = 5, - [8] = 5, + [5] = 3, + [6] = 3, + [7] = 3, + [8] = 2, [9] = 2, - [10] = 5, - [11] = 5, + [10] = 3, + [11] = 2, [12] = 12, - [13] = 13, - [14] = 13, - [15] = 13, - [16] = 16, - [17] = 16, - [18] = 18, - [19] = 13, - [20] = 16, - [21] = 21, - [22] = 13, - [23] = 16, - [24] = 16, + [13] = 12, + [14] = 14, + [15] = 15, + [16] = 15, + [17] = 12, + [18] = 15, + [19] = 12, + [20] = 12, + [21] = 15, + [22] = 15, + [23] = 23, + [24] = 24, [25] = 25, [26] = 26, - [27] = 26, + [27] = 14, [28] = 28, - [29] = 29, - [30] = 30, + [29] = 28, + [30] = 14, [31] = 31, - [32] = 31, + [32] = 32, [33] = 28, - [34] = 28, - [35] = 35, - [36] = 31, - [37] = 35, - [38] = 35, - [39] = 31, - [40] = 35, - [41] = 30, - [42] = 35, - [43] = 30, - [44] = 28, - [45] = 30, - [46] = 46, - [47] = 31, - [48] = 26, - [49] = 28, - [50] = 26, - [51] = 30, + [34] = 32, + [35] = 31, + [36] = 32, + [37] = 37, + [38] = 37, + [39] = 14, + [40] = 28, + [41] = 37, + [42] = 32, + [43] = 28, + [44] = 37, + [45] = 32, + [46] = 31, + [47] = 37, + [48] = 48, + [49] = 49, + [50] = 31, + [51] = 31, [52] = 52, [53] = 53, [54] = 54, @@ -3045,31 +3048,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 58, - [60] = 54, - [61] = 55, - [62] = 56, - [63] = 57, - [64] = 54, - [65] = 58, - [66] = 57, - [67] = 55, - [68] = 56, - [69] = 55, + [59] = 54, + [60] = 56, + [61] = 58, + [62] = 57, + [63] = 55, + [64] = 56, + [65] = 56, + [66] = 54, + [67] = 58, + [68] = 58, + [69] = 54, [70] = 54, - [71] = 54, + [71] = 57, [72] = 55, - [73] = 56, - [74] = 58, - [75] = 57, - [76] = 58, - [77] = 57, - [78] = 56, - [79] = 57, - [80] = 55, + [73] = 57, + [74] = 56, + [75] = 55, + [76] = 55, + [77] = 58, + [78] = 57, + [79] = 55, + [80] = 58, [81] = 56, [82] = 54, - [83] = 58, + [83] = 57, [84] = 84, [85] = 84, [86] = 84, @@ -3107,23 +3110,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [118] = 118, [119] = 119, [120] = 120, - [121] = 121, + [121] = 105, [122] = 122, - [123] = 102, + [123] = 123, [124] = 124, [125] = 125, [126] = 126, [127] = 127, [128] = 128, - [129] = 129, + [129] = 94, [130] = 130, [131] = 131, [132] = 132, - [133] = 96, + [133] = 133, [134] = 134, [135] = 135, [136] = 136, - [137] = 90, + [137] = 137, [138] = 138, [139] = 139, [140] = 140, @@ -3139,7 +3142,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [150] = 150, [151] = 151, [152] = 152, - [153] = 153, + [153] = 90, [154] = 154, [155] = 155, [156] = 156, @@ -3147,432 +3150,432 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [158] = 158, [159] = 159, [160] = 160, - [161] = 100, - [162] = 93, - [163] = 106, - [164] = 96, - [165] = 131, - [166] = 130, - [167] = 128, - [168] = 115, - [169] = 127, - [170] = 111, - [171] = 132, - [172] = 129, - [173] = 126, - [174] = 125, - [175] = 102, - [176] = 124, - [177] = 121, - [178] = 120, - [179] = 119, - [180] = 118, - [181] = 116, - [182] = 122, - [183] = 117, - [184] = 112, - [185] = 94, - [186] = 95, - [187] = 114, - [188] = 97, - [189] = 113, - [190] = 92, - [191] = 98, - [192] = 99, - [193] = 101, - [194] = 103, - [195] = 104, - [196] = 105, - [197] = 110, - [198] = 109, - [199] = 91, - [200] = 108, - [201] = 107, - [202] = 145, - [203] = 143, - [204] = 158, - [205] = 157, - [206] = 155, - [207] = 90, - [208] = 154, - [209] = 153, - [210] = 152, - [211] = 151, - [212] = 150, - [213] = 90, - [214] = 149, - [215] = 146, - [216] = 159, - [217] = 134, - [218] = 160, - [219] = 135, - [220] = 139, - [221] = 136, - [222] = 141, - [223] = 138, - [224] = 142, - [225] = 144, - [226] = 90, - [227] = 147, - [228] = 148, - [229] = 156, - [230] = 140, - [231] = 124, - [232] = 114, - [233] = 106, - [234] = 96, - [235] = 131, - [236] = 130, - [237] = 128, - [238] = 127, - [239] = 126, - [240] = 125, - [241] = 102, - [242] = 126, - [243] = 125, - [244] = 121, - [245] = 120, - [246] = 119, - [247] = 118, - [248] = 116, - [249] = 115, - [250] = 111, - [251] = 114, - [252] = 132, - [253] = 113, - [254] = 92, - [255] = 255, - [256] = 110, - [257] = 109, - [258] = 108, + [161] = 124, + [162] = 109, + [163] = 120, + [164] = 118, + [165] = 95, + [166] = 116, + [167] = 102, + [168] = 119, + [169] = 99, + [170] = 110, + [171] = 101, + [172] = 108, + [173] = 117, + [174] = 106, + [175] = 126, + [176] = 100, + [177] = 98, + [178] = 130, + [179] = 133, + [180] = 132, + [181] = 113, + [182] = 131, + [183] = 96, + [184] = 94, + [185] = 103, + [186] = 115, + [187] = 122, + [188] = 105, + [189] = 127, + [190] = 125, + [191] = 123, + [192] = 114, + [193] = 111, + [194] = 112, + [195] = 91, + [196] = 128, + [197] = 93, + [198] = 97, + [199] = 104, + [200] = 107, + [201] = 92, + [202] = 148, + [203] = 138, + [204] = 136, + [205] = 154, + [206] = 139, + [207] = 160, + [208] = 90, + [209] = 159, + [210] = 134, + [211] = 90, + [212] = 156, + [213] = 145, + [214] = 144, + [215] = 140, + [216] = 90, + [217] = 150, + [218] = 151, + [219] = 155, + [220] = 147, + [221] = 141, + [222] = 157, + [223] = 158, + [224] = 143, + [225] = 135, + [226] = 152, + [227] = 149, + [228] = 146, + [229] = 142, + [230] = 137, + [231] = 126, + [232] = 108, + [233] = 95, + [234] = 91, + [235] = 118, + [236] = 99, + [237] = 95, + [238] = 130, + [239] = 109, + [240] = 124, + [241] = 103, + [242] = 116, + [243] = 128, + [244] = 100, + [245] = 96, + [246] = 91, + [247] = 109, + [248] = 102, + [249] = 99, + [250] = 93, + [251] = 97, + [252] = 93, + [253] = 103, + [254] = 131, + [255] = 113, + [256] = 97, + [257] = 131, + [258] = 104, [259] = 107, - [260] = 91, - [261] = 105, - [262] = 104, - [263] = 103, - [264] = 106, - [265] = 101, - [266] = 100, - [267] = 99, - [268] = 98, - [269] = 97, - [270] = 95, - [271] = 121, - [272] = 94, - [273] = 93, - [274] = 112, - [275] = 120, - [276] = 117, - [277] = 122, - [278] = 124, - [279] = 129, - [280] = 132, - [281] = 111, - [282] = 119, - [283] = 118, - [284] = 129, - [285] = 122, - [286] = 117, - [287] = 112, - [288] = 93, - [289] = 94, - [290] = 95, - [291] = 97, - [292] = 98, - [293] = 99, - [294] = 100, - [295] = 115, - [296] = 101, - [297] = 103, - [298] = 116, - [299] = 104, - [300] = 105, - [301] = 91, - [302] = 107, - [303] = 108, - [304] = 109, - [305] = 111, - [306] = 132, - [307] = 115, - [308] = 110, - [309] = 127, + [260] = 132, + [261] = 99, + [262] = 92, + [263] = 125, + [264] = 104, + [265] = 107, + [266] = 95, + [267] = 112, + [268] = 105, + [269] = 114, + [270] = 119, + [271] = 124, + [272] = 128, + [273] = 115, + [274] = 122, + [275] = 275, + [276] = 120, + [277] = 127, + [278] = 106, + [279] = 133, + [280] = 101, + [281] = 128, + [282] = 91, + [283] = 109, + [284] = 123, + [285] = 111, + [286] = 113, + [287] = 93, + [288] = 117, + [289] = 131, + [290] = 97, + [291] = 104, + [292] = 103, + [293] = 108, + [294] = 125, + [295] = 108, + [296] = 107, + [297] = 101, + [298] = 132, + [299] = 92, + [300] = 112, + [301] = 100, + [302] = 102, + [303] = 116, + [304] = 118, + [305] = 120, + [306] = 133, + [307] = 106, + [308] = 119, + [309] = 132, [310] = 92, - [311] = 128, - [312] = 130, - [313] = 131, - [314] = 129, - [315] = 124, - [316] = 122, - [317] = 117, - [318] = 112, - [319] = 113, - [320] = 106, - [321] = 93, - [322] = 94, - [323] = 96, - [324] = 131, - [325] = 130, - [326] = 95, - [327] = 97, - [328] = 98, - [329] = 114, - [330] = 99, - [331] = 100, - [332] = 101, - [333] = 103, - [334] = 104, - [335] = 105, - [336] = 91, - [337] = 107, - [338] = 108, - [339] = 128, - [340] = 127, - [341] = 126, - [342] = 109, + [311] = 100, + [312] = 114, + [313] = 96, + [314] = 94, + [315] = 96, + [316] = 94, + [317] = 122, + [318] = 130, + [319] = 110, + [320] = 126, + [321] = 117, + [322] = 114, + [323] = 105, + [324] = 124, + [325] = 101, + [326] = 115, + [327] = 125, + [328] = 122, + [329] = 102, + [330] = 98, + [331] = 116, + [332] = 117, + [333] = 118, + [334] = 133, + [335] = 127, + [336] = 123, + [337] = 106, + [338] = 111, + [339] = 130, + [340] = 113, + [341] = 98, + [342] = 119, [343] = 110, - [344] = 125, - [345] = 102, - [346] = 121, + [344] = 115, + [345] = 110, + [346] = 98, [347] = 120, - [348] = 119, - [349] = 118, - [350] = 116, - [351] = 92, - [352] = 113, - [353] = 145, - [354] = 153, + [348] = 127, + [349] = 123, + [350] = 111, + [351] = 112, + [352] = 126, + [353] = 156, + [354] = 140, [355] = 138, - [356] = 153, - [357] = 147, - [358] = 144, - [359] = 138, - [360] = 152, - [361] = 151, - [362] = 150, - [363] = 149, - [364] = 147, - [365] = 139, - [366] = 142, - [367] = 148, - [368] = 156, - [369] = 149, - [370] = 146, - [371] = 150, - [372] = 157, - [373] = 155, - [374] = 146, - [375] = 151, - [376] = 145, - [377] = 152, - [378] = 154, - [379] = 148, - [380] = 136, - [381] = 139, - [382] = 135, - [383] = 154, - [384] = 135, - [385] = 158, - [386] = 159, - [387] = 134, - [388] = 155, - [389] = 156, - [390] = 140, - [391] = 157, - [392] = 143, - [393] = 158, - [394] = 141, - [395] = 159, - [396] = 140, - [397] = 160, - [398] = 134, - [399] = 136, - [400] = 141, - [401] = 142, - [402] = 160, - [403] = 143, - [404] = 144, + [356] = 143, + [357] = 145, + [358] = 152, + [359] = 145, + [360] = 147, + [361] = 141, + [362] = 142, + [363] = 143, + [364] = 154, + [365] = 137, + [366] = 149, + [367] = 157, + [368] = 148, + [369] = 157, + [370] = 160, + [371] = 136, + [372] = 159, + [373] = 134, + [374] = 158, + [375] = 146, + [376] = 137, + [377] = 142, + [378] = 148, + [379] = 152, + [380] = 135, + [381] = 144, + [382] = 140, + [383] = 141, + [384] = 158, + [385] = 138, + [386] = 149, + [387] = 155, + [388] = 151, + [389] = 160, + [390] = 150, + [391] = 151, + [392] = 134, + [393] = 155, + [394] = 150, + [395] = 139, + [396] = 139, + [397] = 144, + [398] = 156, + [399] = 154, + [400] = 146, + [401] = 147, + [402] = 135, + [403] = 136, + [404] = 159, [405] = 405, - [406] = 406, - [407] = 405, - [408] = 406, + [406] = 405, + [407] = 407, + [408] = 408, [409] = 409, [410] = 409, [411] = 411, - [412] = 412, - [413] = 406, - [414] = 414, - [415] = 411, - [416] = 412, - [417] = 406, - [418] = 418, - [419] = 418, - [420] = 411, - [421] = 412, - [422] = 411, - [423] = 418, - [424] = 406, - [425] = 405, - [426] = 409, - [427] = 414, - [428] = 405, - [429] = 412, - [430] = 405, - [431] = 411, - [432] = 432, + [412] = 411, + [413] = 413, + [414] = 405, + [415] = 415, + [416] = 407, + [417] = 407, + [418] = 415, + [419] = 405, + [420] = 409, + [421] = 408, + [422] = 409, + [423] = 408, + [424] = 424, + [425] = 413, + [426] = 413, + [427] = 408, + [428] = 415, + [429] = 413, + [430] = 424, + [431] = 424, + [432] = 411, [433] = 405, - [434] = 406, - [435] = 411, - [436] = 432, - [437] = 414, - [438] = 418, - [439] = 412, - [440] = 409, - [441] = 412, - [442] = 432, - [443] = 432, - [444] = 414, - [445] = 414, - [446] = 409, - [447] = 409, - [448] = 418, - [449] = 432, - [450] = 414, - [451] = 432, - [452] = 158, - [453] = 159, - [454] = 157, + [434] = 415, + [435] = 408, + [436] = 407, + [437] = 407, + [438] = 409, + [439] = 411, + [440] = 411, + [441] = 408, + [442] = 415, + [443] = 407, + [444] = 424, + [445] = 415, + [446] = 424, + [447] = 413, + [448] = 424, + [449] = 411, + [450] = 405, + [451] = 413, + [452] = 141, + [453] = 157, + [454] = 135, [455] = 156, - [456] = 140, - [457] = 154, - [458] = 160, - [459] = 135, - [460] = 153, - [461] = 149, - [462] = 155, - [463] = 463, - [464] = 144, - [465] = 139, - [466] = 134, - [467] = 152, - [468] = 468, - [469] = 146, - [470] = 142, - [471] = 147, - [472] = 150, - [473] = 151, - [474] = 148, - [475] = 141, - [476] = 143, + [456] = 143, + [457] = 139, + [458] = 144, + [459] = 459, + [460] = 152, + [461] = 155, + [462] = 158, + [463] = 154, + [464] = 145, + [465] = 137, + [466] = 160, + [467] = 146, + [468] = 134, + [469] = 151, + [470] = 159, + [471] = 150, + [472] = 140, + [473] = 147, + [474] = 474, + [475] = 142, + [476] = 149, [477] = 138, - [478] = 145, - [479] = 255, + [478] = 136, + [479] = 275, [480] = 480, [481] = 481, - [482] = 481, + [482] = 480, [483] = 480, - [484] = 481, - [485] = 480, + [484] = 480, + [485] = 481, [486] = 481, - [487] = 480, + [487] = 481, [488] = 488, [489] = 489, - [490] = 255, + [490] = 275, [491] = 90, [492] = 492, - [493] = 255, + [493] = 275, [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 504, - [506] = 504, - [507] = 504, - [508] = 504, - [509] = 504, - [510] = 504, - [511] = 504, - [512] = 504, - [513] = 504, + [495] = 494, + [496] = 494, + [497] = 494, + [498] = 494, + [499] = 494, + [500] = 494, + [501] = 494, + [502] = 494, + [503] = 494, + [504] = 494, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, [514] = 514, [515] = 515, - [516] = 504, + [516] = 516, [517] = 517, [518] = 518, [519] = 519, [520] = 520, - [521] = 517, - [522] = 522, - [523] = 518, - [524] = 517, - [525] = 518, + [521] = 518, + [522] = 519, + [523] = 519, + [524] = 524, + [525] = 519, [526] = 518, - [527] = 517, + [527] = 518, [528] = 528, [529] = 529, [530] = 530, [531] = 530, - [532] = 530, - [533] = 533, - [534] = 533, - [535] = 535, - [536] = 533, - [537] = 530, - [538] = 538, - [539] = 533, - [540] = 540, - [541] = 535, - [542] = 540, + [532] = 532, + [533] = 532, + [534] = 532, + [535] = 530, + [536] = 536, + [537] = 532, + [538] = 530, + [539] = 539, + [540] = 539, + [541] = 541, + [542] = 541, [543] = 543, [544] = 544, [545] = 545, - [546] = 535, + [546] = 546, [547] = 547, - [548] = 535, - [549] = 549, - [550] = 550, + [548] = 545, + [549] = 539, + [550] = 545, [551] = 551, [552] = 552, [553] = 553, - [554] = 554, - [555] = 551, + [554] = 545, + [555] = 545, [556] = 556, - [557] = 554, - [558] = 554, - [559] = 554, - [560] = 551, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, [561] = 561, - [562] = 562, + [562] = 559, [563] = 563, [564] = 564, - [565] = 551, + [565] = 559, [566] = 566, - [567] = 567, + [567] = 559, [568] = 568, - [569] = 554, + [569] = 539, [570] = 570, [571] = 571, [572] = 572, - [573] = 573, + [573] = 570, [574] = 574, [575] = 575, - [576] = 576, + [576] = 570, [577] = 577, [578] = 578, - [579] = 578, + [579] = 574, [580] = 580, - [581] = 578, - [582] = 578, - [583] = 583, + [581] = 581, + [582] = 582, + [583] = 570, [584] = 584, [585] = 585, - [586] = 572, + [586] = 586, [587] = 587, [588] = 588, [589] = 589, @@ -3580,115 +3583,115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [591] = 591, [592] = 592, [593] = 593, - [594] = 594, + [594] = 592, [595] = 595, [596] = 596, - [597] = 588, - [598] = 598, - [599] = 592, - [600] = 592, - [601] = 592, - [602] = 602, + [597] = 596, + [598] = 593, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 589, [603] = 603, - [604] = 594, - [605] = 592, - [606] = 593, + [604] = 604, + [605] = 605, + [606] = 606, [607] = 607, - [608] = 608, + [608] = 599, [609] = 609, [610] = 610, [611] = 611, - [612] = 612, + [612] = 607, [613] = 613, - [614] = 592, + [614] = 603, [615] = 615, - [616] = 608, - [617] = 617, - [618] = 618, - [619] = 602, - [620] = 620, - [621] = 618, - [622] = 594, - [623] = 593, + [616] = 591, + [617] = 593, + [618] = 593, + [619] = 592, + [620] = 590, + [621] = 609, + [622] = 599, + [623] = 600, [624] = 624, - [625] = 593, - [626] = 618, - [627] = 627, - [628] = 607, - [629] = 629, - [630] = 594, - [631] = 589, - [632] = 591, - [633] = 602, - [634] = 615, - [635] = 620, - [636] = 589, - [637] = 590, - [638] = 618, - [639] = 591, - [640] = 591, - [641] = 629, - [642] = 642, - [643] = 617, - [644] = 602, - [645] = 611, - [646] = 590, - [647] = 624, - [648] = 615, - [649] = 588, - [650] = 629, - [651] = 627, - [652] = 652, - [653] = 615, - [654] = 611, - [655] = 603, - [656] = 629, - [657] = 608, - [658] = 607, - [659] = 588, - [660] = 620, - [661] = 624, + [625] = 589, + [626] = 607, + [627] = 606, + [628] = 628, + [629] = 607, + [630] = 613, + [631] = 631, + [632] = 615, + [633] = 590, + [634] = 600, + [635] = 615, + [636] = 603, + [637] = 588, + [638] = 591, + [639] = 592, + [640] = 606, + [641] = 593, + [642] = 593, + [643] = 609, + [644] = 588, + [645] = 605, + [646] = 596, + [647] = 613, + [648] = 605, + [649] = 603, + [650] = 650, + [651] = 588, + [652] = 596, + [653] = 609, + [654] = 613, + [655] = 601, + [656] = 656, + [657] = 599, + [658] = 605, + [659] = 606, + [660] = 591, + [661] = 661, [662] = 589, - [663] = 624, - [664] = 607, - [665] = 665, - [666] = 620, - [667] = 608, - [668] = 611, - [669] = 590, + [663] = 663, + [664] = 615, + [665] = 600, + [666] = 611, + [667] = 667, + [668] = 590, + [669] = 624, [670] = 670, [671] = 670, [672] = 670, [673] = 670, [674] = 670, - [675] = 515, + [675] = 506, [676] = 676, - [677] = 677, - [678] = 488, + [677] = 488, + [678] = 678, [679] = 679, - [680] = 489, + [680] = 680, [681] = 681, - [682] = 682, + [682] = 489, [683] = 683, [684] = 684, - [685] = 683, - [686] = 684, - [687] = 687, - [688] = 683, - [689] = 689, - [690] = 689, - [691] = 689, + [685] = 685, + [686] = 685, + [687] = 684, + [688] = 688, + [689] = 685, + [690] = 688, + [691] = 685, [692] = 683, - [693] = 693, - [694] = 689, - [695] = 693, + [693] = 683, + [694] = 685, + [695] = 688, [696] = 684, - [697] = 693, - [698] = 693, - [699] = 683, - [700] = 693, - [701] = 689, - [702] = 684, + [697] = 697, + [698] = 688, + [699] = 688, + [700] = 684, + [701] = 683, + [702] = 683, [703] = 684, [704] = 704, [705] = 705, @@ -3697,13 +3700,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [708] = 708, [709] = 709, [710] = 710, - [711] = 704, + [711] = 711, [712] = 712, [713] = 713, [714] = 714, [715] = 715, [716] = 716, - [717] = 717, + [717] = 716, [718] = 718, [719] = 719, [720] = 720, @@ -3711,39 +3714,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [722] = 722, [723] = 723, [724] = 724, - [725] = 724, - [726] = 723, - [727] = 724, - [728] = 723, - [729] = 724, - [730] = 723, - [731] = 723, - [732] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 729, + [731] = 729, + [732] = 729, [733] = 733, - [734] = 733, + [734] = 734, [735] = 733, - [736] = 733, - [737] = 737, + [736] = 729, + [737] = 733, [738] = 733, - [739] = 739, - [740] = 733, + [739] = 733, + [740] = 740, [741] = 741, - [742] = 677, - [743] = 743, + [742] = 740, + [743] = 740, [744] = 744, [745] = 745, [746] = 746, - [747] = 747, - [748] = 748, + [747] = 745, + [748] = 740, [749] = 749, - [750] = 750, + [750] = 740, [751] = 751, - [752] = 752, + [752] = 740, [753] = 753, [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, + [755] = 681, + [756] = 488, + [757] = 489, [758] = 758, [759] = 759, [760] = 760, @@ -3761,7 +3764,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [772] = 772, [773] = 773, [774] = 774, - [775] = 704, + [775] = 775, [776] = 776, [777] = 777, [778] = 778, @@ -3771,12 +3774,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [782] = 782, [783] = 783, [784] = 784, - [785] = 142, - [786] = 144, - [787] = 138, - [788] = 147, - [789] = 148, - [790] = 156, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, [791] = 791, [792] = 792, [793] = 793, @@ -3786,339 +3789,339 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [797] = 797, [798] = 798, [799] = 799, - [800] = 800, + [800] = 716, [801] = 801, - [802] = 801, - [803] = 791, - [804] = 797, - [805] = 799, - [806] = 800, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, [807] = 807, - [808] = 148, - [809] = 156, + [808] = 808, + [809] = 809, [810] = 810, - [811] = 737, + [811] = 811, [812] = 812, - [813] = 795, - [814] = 793, - [815] = 796, - [816] = 147, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, [817] = 817, - [818] = 798, - [819] = 794, - [820] = 144, - [821] = 792, - [822] = 142, - [823] = 138, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, [824] = 824, - [825] = 784, + [825] = 825, [826] = 826, [827] = 827, [828] = 828, [829] = 829, - [830] = 763, - [831] = 489, - [832] = 744, - [833] = 768, - [834] = 762, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, [835] = 835, - [836] = 706, - [837] = 747, - [838] = 767, - [839] = 752, - [840] = 759, - [841] = 782, - [842] = 745, - [843] = 760, - [844] = 781, - [845] = 780, - [846] = 778, - [847] = 756, - [848] = 774, - [849] = 488, - [850] = 772, - [851] = 748, - [852] = 709, - [853] = 148, - [854] = 147, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 147, + [851] = 145, + [852] = 152, + [853] = 149, + [854] = 854, [855] = 855, - [856] = 793, + [856] = 856, [857] = 857, - [858] = 791, + [858] = 143, [859] = 859, - [860] = 794, - [861] = 792, + [860] = 860, + [861] = 861, [862] = 862, - [863] = 746, - [864] = 855, - [865] = 783, + [863] = 863, + [864] = 141, + [865] = 865, [866] = 866, - [867] = 867, - [868] = 784, - [869] = 798, - [870] = 795, - [871] = 796, - [872] = 796, - [873] = 795, - [874] = 797, - [875] = 793, - [876] = 799, - [877] = 794, - [878] = 800, - [879] = 801, - [880] = 855, - [881] = 156, - [882] = 156, - [883] = 148, - [884] = 798, - [885] = 144, - [886] = 142, - [887] = 138, - [888] = 888, - [889] = 889, - [890] = 792, - [891] = 751, - [892] = 855, - [893] = 893, - [894] = 784, - [895] = 895, - [896] = 855, - [897] = 797, - [898] = 138, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 142, + [867] = 866, + [868] = 868, + [869] = 866, + [870] = 866, + [871] = 866, + [872] = 872, + [873] = 849, + [874] = 859, + [875] = 145, + [876] = 876, + [877] = 877, + [878] = 147, + [879] = 854, + [880] = 857, + [881] = 856, + [882] = 861, + [883] = 862, + [884] = 141, + [885] = 143, + [886] = 152, + [887] = 149, + [888] = 855, + [889] = 865, + [890] = 848, + [891] = 863, + [892] = 860, + [893] = 804, + [894] = 803, + [895] = 805, + [896] = 782, + [897] = 779, + [898] = 791, + [899] = 808, + [900] = 772, + [901] = 778, + [902] = 789, [903] = 903, - [904] = 144, - [905] = 766, - [906] = 791, - [907] = 743, - [908] = 801, - [909] = 909, - [910] = 147, - [911] = 911, - [912] = 799, - [913] = 800, - [914] = 914, + [904] = 707, + [905] = 802, + [906] = 773, + [907] = 764, + [908] = 796, + [909] = 761, + [910] = 792, + [911] = 785, + [912] = 759, + [913] = 713, + [914] = 862, [915] = 915, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, + [917] = 855, + [918] = 849, + [919] = 865, + [920] = 859, [921] = 921, [922] = 922, - [923] = 923, + [923] = 149, [924] = 924, - [925] = 925, - [926] = 926, - [927] = 115, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, + [925] = 705, + [926] = 152, + [927] = 855, + [928] = 143, + [929] = 916, + [930] = 916, + [931] = 709, + [932] = 848, + [933] = 856, + [934] = 857, + [935] = 854, + [936] = 854, [937] = 937, - [938] = 938, - [939] = 939, + [938] = 857, + [939] = 706, [940] = 940, [941] = 941, [942] = 942, - [943] = 943, + [943] = 856, [944] = 944, - [945] = 945, + [945] = 861, [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 951, - [953] = 951, - [954] = 951, - [955] = 955, - [956] = 951, - [957] = 957, - [958] = 958, - [959] = 115, - [960] = 958, - [961] = 958, - [962] = 767, - [963] = 963, - [964] = 964, - [965] = 958, - [966] = 763, - [967] = 772, - [968] = 747, - [969] = 774, - [970] = 752, - [971] = 778, - [972] = 759, - [973] = 782, - [974] = 781, - [975] = 780, - [976] = 958, + [947] = 814, + [948] = 862, + [949] = 861, + [950] = 860, + [951] = 860, + [952] = 859, + [953] = 953, + [954] = 863, + [955] = 848, + [956] = 865, + [957] = 849, + [958] = 145, + [959] = 916, + [960] = 145, + [961] = 147, + [962] = 141, + [963] = 916, + [964] = 143, + [965] = 965, + [966] = 966, + [967] = 710, + [968] = 141, + [969] = 969, + [970] = 152, + [971] = 149, + [972] = 147, + [973] = 973, + [974] = 863, + [975] = 975, + [976] = 132, [977] = 977, - [978] = 748, + [978] = 978, [979] = 979, [980] = 980, [981] = 981, [982] = 982, - [983] = 983, - [984] = 984, - [985] = 985, + [983] = 728, + [984] = 759, + [985] = 802, [986] = 986, [987] = 987, [988] = 988, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 992, + [989] = 987, + [990] = 779, + [991] = 987, + [992] = 987, [993] = 993, - [994] = 994, - [995] = 995, - [996] = 995, - [997] = 993, + [994] = 868, + [995] = 987, + [996] = 785, + [997] = 872, [998] = 998, - [999] = 999, + [999] = 132, [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, + [1001] = 792, + [1002] = 803, + [1003] = 804, + [1004] = 791, + [1005] = 772, + [1006] = 789, + [1007] = 796, + [1008] = 773, + [1009] = 946, + [1010] = 944, + [1011] = 973, [1012] = 1012, [1013] = 1013, - [1014] = 1005, + [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 1010, - [1021] = 1011, - [1022] = 1006, - [1023] = 1010, - [1024] = 1008, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, [1025] = 1025, - [1026] = 1026, - [1027] = 1005, + [1026] = 1015, + [1027] = 1027, [1028] = 1028, - [1029] = 1011, - [1030] = 1010, - [1031] = 1011, + [1029] = 1014, + [1030] = 1030, + [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1011, - [1036] = 1010, + [1035] = 1035, + [1036] = 1031, [1037] = 1037, [1038] = 1038, - [1039] = 1005, - [1040] = 1005, - [1041] = 1006, + [1039] = 1039, + [1040] = 1031, + [1041] = 1041, [1042] = 1042, - [1043] = 1043, - [1044] = 1006, + [1043] = 1042, + [1044] = 1041, [1045] = 1045, - [1046] = 1006, + [1046] = 1046, [1047] = 1047, [1048] = 1048, - [1049] = 759, - [1050] = 1050, - [1051] = 767, - [1052] = 752, - [1053] = 1053, + [1049] = 1049, + [1050] = 1041, + [1051] = 1051, + [1052] = 1052, + [1053] = 1038, [1054] = 1054, [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 1048, - [1061] = 1048, - [1062] = 747, - [1063] = 1048, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, + [1058] = 1042, + [1059] = 1038, + [1060] = 1060, + [1061] = 1061, + [1062] = 1041, + [1063] = 1045, + [1064] = 1041, + [1065] = 1042, + [1066] = 1031, [1067] = 1067, - [1068] = 1068, - [1069] = 1069, + [1068] = 1038, + [1069] = 1038, [1070] = 1070, [1071] = 1071, - [1072] = 1048, - [1073] = 782, - [1074] = 772, - [1075] = 748, - [1076] = 1047, + [1072] = 1042, + [1073] = 1031, + [1074] = 1074, + [1075] = 1075, + [1076] = 789, [1077] = 1077, - [1078] = 1064, + [1078] = 802, [1079] = 1079, - [1080] = 712, - [1081] = 1047, - [1082] = 774, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, [1083] = 1083, - [1084] = 763, - [1085] = 1047, - [1086] = 781, - [1087] = 1048, + [1084] = 773, + [1085] = 1080, + [1086] = 1086, + [1087] = 1087, [1088] = 1088, - [1089] = 778, - [1090] = 780, - [1091] = 955, - [1092] = 1092, - [1093] = 1093, - [1094] = 957, - [1095] = 1095, - [1096] = 982, - [1097] = 980, - [1098] = 981, + [1089] = 796, + [1090] = 792, + [1091] = 772, + [1092] = 1080, + [1093] = 791, + [1094] = 804, + [1095] = 1081, + [1096] = 1096, + [1097] = 759, + [1098] = 1098, [1099] = 1099, - [1100] = 1100, + [1100] = 803, [1101] = 1101, [1102] = 1102, - [1103] = 1103, - [1104] = 1104, + [1103] = 1081, + [1104] = 1081, [1105] = 1105, [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, + [1107] = 1080, + [1108] = 785, + [1109] = 1081, + [1110] = 779, + [1111] = 1088, [1112] = 1112, [1113] = 1113, - [1114] = 939, + [1114] = 1081, [1115] = 1115, [1116] = 1116, - [1117] = 1116, - [1118] = 1115, - [1119] = 1115, - [1120] = 1116, - [1121] = 1112, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 815, [1122] = 1122, [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1124, - [1127] = 1125, - [1128] = 1124, - [1129] = 1125, - [1130] = 1124, - [1131] = 1131, - [1132] = 1125, + [1124] = 1122, + [1125] = 1122, + [1126] = 1122, + [1127] = 1123, + [1128] = 1123, + [1129] = 1123, + [1130] = 1122, + [1131] = 1123, + [1132] = 1132, [1133] = 1133, [1134] = 1134, [1135] = 1135, @@ -4127,161 +4130,161 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1141, - [1142] = 1142, + [1141] = 1140, + [1142] = 815, [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1131, - [1147] = 1123, - [1148] = 1148, - [1149] = 1149, - [1150] = 1124, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1157, + [1144] = 1140, + [1145] = 1140, + [1146] = 1146, + [1147] = 1147, + [1148] = 1147, + [1149] = 1147, + [1150] = 1150, + [1151] = 1147, + [1152] = 1143, + [1153] = 1150, + [1154] = 1146, + [1155] = 1146, + [1156] = 1150, + [1157] = 1147, [1158] = 1158, [1159] = 1159, [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 1139, + [1163] = 1158, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1137, - [1168] = 1138, + [1167] = 1167, + [1168] = 1168, [1169] = 1169, - [1170] = 1140, + [1170] = 1170, [1171] = 1171, - [1172] = 765, - [1173] = 1141, - [1174] = 1142, - [1175] = 1143, - [1176] = 1144, - [1177] = 1145, + [1172] = 1172, + [1173] = 1173, + [1174] = 1159, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, [1178] = 1178, - [1179] = 1162, + [1179] = 1179, [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1156, - [1185] = 1136, - [1186] = 1134, - [1187] = 1151, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, [1188] = 1188, [1189] = 1189, [1190] = 1190, - [1191] = 765, - [1192] = 1183, - [1193] = 1183, - [1194] = 1152, - [1195] = 1153, - [1196] = 1188, - [1197] = 1154, - [1198] = 1155, - [1199] = 1166, - [1200] = 1161, - [1201] = 1157, - [1202] = 939, - [1203] = 1183, - [1204] = 1188, - [1205] = 1165, - [1206] = 1183, - [1207] = 1135, - [1208] = 1158, - [1209] = 1190, - [1210] = 1182, - [1211] = 1122, - [1212] = 1159, - [1213] = 1160, - [1214] = 1188, + [1191] = 1191, + [1192] = 1160, + [1193] = 1185, + [1194] = 795, + [1195] = 1171, + [1196] = 1173, + [1197] = 1190, + [1198] = 1158, + [1199] = 1172, + [1200] = 1169, + [1201] = 1170, + [1202] = 1160, + [1203] = 1185, + [1204] = 1204, + [1205] = 1185, + [1206] = 1166, + [1207] = 1165, + [1208] = 1208, + [1209] = 1164, + [1210] = 1162, + [1211] = 1171, + [1212] = 1161, + [1213] = 1178, + [1214] = 1214, [1215] = 1215, - [1216] = 955, - [1217] = 1217, - [1218] = 1217, - [1219] = 1219, - [1220] = 1217, - [1221] = 1219, - [1222] = 1217, - [1223] = 1217, - [1224] = 1219, - [1225] = 1219, - [1226] = 1219, + [1216] = 1160, + [1217] = 1171, + [1218] = 1218, + [1219] = 1185, + [1220] = 1160, + [1221] = 1171, + [1222] = 1158, + [1223] = 1185, + [1224] = 1185, + [1225] = 1225, + [1226] = 1177, [1227] = 1227, [1228] = 1228, - [1229] = 1227, - [1230] = 1227, - [1231] = 1227, - [1232] = 1232, + [1229] = 1229, + [1230] = 1230, + [1231] = 1230, + [1232] = 1214, [1233] = 1227, - [1234] = 1234, - [1235] = 1235, - [1236] = 1234, - [1237] = 1235, - [1238] = 1235, - [1239] = 1234, - [1240] = 1234, - [1241] = 1235, - [1242] = 1234, - [1243] = 1243, - [1244] = 1244, - [1245] = 1243, - [1246] = 1243, - [1247] = 1243, - [1248] = 1243, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1251, - [1256] = 1251, - [1257] = 1251, - [1258] = 1258, - [1259] = 1251, - [1260] = 1250, + [1234] = 1228, + [1235] = 1215, + [1236] = 1230, + [1237] = 1237, + [1238] = 1176, + [1239] = 1239, + [1240] = 1227, + [1241] = 1228, + [1242] = 1168, + [1243] = 1204, + [1244] = 1230, + [1245] = 1182, + [1246] = 1191, + [1247] = 1225, + [1248] = 1228, + [1249] = 1227, + [1250] = 795, + [1251] = 1189, + [1252] = 1239, + [1253] = 1227, + [1254] = 1230, + [1255] = 1188, + [1256] = 1187, + [1257] = 1186, + [1258] = 1184, + [1259] = 1179, + [1260] = 1218, [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1250, - [1265] = 1250, + [1262] = 1180, + [1263] = 1181, + [1264] = 1264, + [1265] = 1264, [1266] = 1266, [1267] = 1267, - [1268] = 1251, - [1269] = 1251, - [1270] = 1250, - [1271] = 1271, - [1272] = 1272, + [1268] = 1264, + [1269] = 1264, + [1270] = 1270, + [1271] = 1264, + [1272] = 868, [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1271, - [1279] = 1279, - [1280] = 1271, - [1281] = 1271, - [1282] = 1271, + [1274] = 1273, + [1275] = 1273, + [1276] = 1273, + [1277] = 1273, + [1278] = 1278, + [1279] = 1278, + [1280] = 1278, + [1281] = 1278, + [1282] = 1278, [1283] = 1283, [1284] = 1284, [1285] = 1285, - [1286] = 1283, + [1286] = 1286, [1287] = 1287, [1288] = 1288, - [1289] = 1283, - [1290] = 1283, + [1289] = 1289, + [1290] = 1290, [1291] = 1291, [1292] = 1292, [1293] = 1293, [1294] = 1294, - [1295] = 1283, + [1295] = 1295, [1296] = 1296, [1297] = 1297, [1298] = 1298, @@ -4299,33 +4302,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1310, - [1314] = 1310, + [1313] = 1313, + [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1310, - [1318] = 1316, - [1319] = 1316, - [1320] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, [1321] = 1321, - [1322] = 1310, - [1323] = 1316, + [1322] = 1322, + [1323] = 1323, [1324] = 1324, [1325] = 1325, [1326] = 1326, - [1327] = 1324, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1332, - [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1324, + [1327] = 1327, + [1328] = 1324, + [1329] = 1326, + [1330] = 1324, + [1331] = 1324, + [1332] = 1326, + [1333] = 1324, + [1334] = 1326, + [1335] = 1326, + [1336] = 1336, [1337] = 1337, - [1338] = 1324, - [1339] = 1324, + [1338] = 1338, + [1339] = 1339, [1340] = 1340, [1341] = 1341, [1342] = 1342, @@ -4333,11 +4336,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1344] = 1344, [1345] = 1345, [1346] = 1346, - [1347] = 1347, + [1347] = 1340, [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, + [1349] = 1340, + [1350] = 1340, + [1351] = 1340, [1352] = 1352, [1353] = 1353, [1354] = 1354, @@ -4378,9 +4381,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1389] = 1389, [1390] = 1390, [1391] = 1391, - [1392] = 1389, + [1392] = 1392, [1393] = 1393, - [1394] = 1393, + [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, @@ -4389,482 +4392,500 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1400] = 1400, [1401] = 1401, [1402] = 1402, - [1403] = 1389, + [1403] = 1403, [1404] = 1404, [1405] = 1405, - [1406] = 1404, - [1407] = 1402, - [1408] = 1389, - [1409] = 1389, - [1410] = 1402, - [1411] = 1389, - [1412] = 1389, - [1413] = 1413, - [1414] = 1397, - [1415] = 1393, + [1406] = 1406, + [1407] = 1406, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1408, + [1412] = 1403, + [1413] = 1409, + [1414] = 1414, + [1415] = 1415, [1416] = 1416, - [1417] = 1398, + [1417] = 1417, [1418] = 1418, - [1419] = 1397, - [1420] = 1398, - [1421] = 1389, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, [1422] = 1422, - [1423] = 1397, - [1424] = 1390, - [1425] = 1425, - [1426] = 1398, - [1427] = 1427, - [1428] = 1428, - [1429] = 1389, - [1430] = 1430, - [1431] = 1393, - [1432] = 1404, - [1433] = 1402, - [1434] = 1404, - [1435] = 1393, + [1423] = 1422, + [1424] = 1422, + [1425] = 1422, + [1426] = 1405, + [1427] = 1403, + [1428] = 1405, + [1429] = 1429, + [1430] = 1429, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1429, + [1435] = 1406, [1436] = 1436, - [1437] = 1398, - [1438] = 1438, - [1439] = 1404, - [1440] = 1440, + [1437] = 1437, + [1438] = 1408, + [1439] = 1439, + [1440] = 1422, [1441] = 1441, - [1442] = 1425, - [1443] = 1390, - [1444] = 1425, - [1445] = 1402, - [1446] = 1397, - [1447] = 1402, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, + [1442] = 1422, + [1443] = 1422, + [1444] = 1422, + [1445] = 1445, + [1446] = 1446, + [1447] = 1404, + [1448] = 1404, + [1449] = 1408, + [1450] = 1422, [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1454, + [1452] = 1403, + [1453] = 1406, + [1454] = 1405, [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, + [1456] = 1403, + [1457] = 1429, + [1458] = 1406, + [1459] = 1429, + [1460] = 1409, + [1461] = 1405, + [1462] = 1406, [1463] = 1463, - [1464] = 1464, + [1464] = 1408, [1465] = 1465, [1466] = 1466, [1467] = 1467, [1468] = 1468, [1469] = 1469, - [1470] = 1456, + [1470] = 1470, [1471] = 1471, - [1472] = 1460, + [1472] = 1470, [1473] = 1473, - [1474] = 1450, + [1474] = 1474, [1475] = 1475, [1476] = 1476, - [1477] = 1477, + [1477] = 1467, [1478] = 1478, [1479] = 1479, - [1480] = 1452, + [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, [1484] = 1484, [1485] = 1485, [1486] = 1486, - [1487] = 1465, - [1488] = 1450, + [1487] = 1487, + [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 1483, - [1495] = 1452, + [1494] = 1494, + [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1498, - [1499] = 1481, - [1500] = 1460, - [1501] = 1501, + [1498] = 1495, + [1499] = 1499, + [1500] = 1491, + [1501] = 1476, [1502] = 1502, [1503] = 1503, - [1504] = 1450, - [1505] = 1485, - [1506] = 1506, + [1504] = 1504, + [1505] = 1505, + [1506] = 1497, [1507] = 1507, - [1508] = 1465, - [1509] = 1483, - [1510] = 1510, + [1508] = 1508, + [1509] = 1468, + [1510] = 1484, [1511] = 1511, - [1512] = 1512, + [1512] = 1469, [1513] = 1513, [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 1517, - [1518] = 1460, + [1517] = 1476, + [1518] = 1518, [1519] = 1519, - [1520] = 1492, - [1521] = 1485, - [1522] = 1522, + [1520] = 1520, + [1521] = 1521, + [1522] = 1491, [1523] = 1523, - [1524] = 1460, - [1525] = 1525, + [1524] = 1524, + [1525] = 1469, [1526] = 1526, - [1527] = 1527, + [1527] = 1497, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1532, + [1532] = 1491, [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1533, - [1539] = 1535, - [1540] = 1540, + [1535] = 1467, + [1536] = 1469, + [1537] = 1469, + [1538] = 1538, + [1539] = 1539, + [1540] = 1470, [1541] = 1541, [1542] = 1542, [1543] = 1543, [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1535, - [1548] = 1548, + [1547] = 1547, + [1548] = 1546, [1549] = 1549, [1550] = 1550, [1551] = 1551, [1552] = 1552, [1553] = 1553, - [1554] = 1550, - [1555] = 1537, + [1554] = 1546, + [1555] = 1555, [1556] = 1556, [1557] = 1557, - [1558] = 1558, - [1559] = 1535, - [1560] = 1532, - [1561] = 1530, + [1558] = 1546, + [1559] = 1559, + [1560] = 1557, + [1561] = 1555, [1562] = 1562, [1563] = 1563, - [1564] = 1564, + [1564] = 1563, [1565] = 1565, [1566] = 1566, - [1567] = 1566, - [1568] = 1550, - [1569] = 1569, + [1567] = 1557, + [1568] = 1551, + [1569] = 1552, [1570] = 1570, - [1571] = 1564, - [1572] = 1572, + [1571] = 1559, + [1572] = 1550, [1573] = 1573, - [1574] = 1574, - [1575] = 1530, + [1574] = 1559, + [1575] = 1563, [1576] = 1566, - [1577] = 1564, - [1578] = 1572, - [1579] = 1572, - [1580] = 1570, - [1581] = 1543, - [1582] = 1572, - [1583] = 1548, - [1584] = 1564, - [1585] = 1550, - [1586] = 1548, - [1587] = 1587, - [1588] = 1537, - [1589] = 1566, - [1590] = 1573, - [1591] = 1543, - [1592] = 1573, - [1593] = 1537, - [1594] = 1542, - [1595] = 1543, - [1596] = 1543, - [1597] = 1537, - [1598] = 1537, - [1599] = 1550, - [1600] = 1533, - [1601] = 1543, - [1602] = 1535, - [1603] = 1548, - [1604] = 1530, + [1577] = 1550, + [1578] = 1557, + [1579] = 1566, + [1580] = 1565, + [1581] = 1581, + [1582] = 1552, + [1583] = 1551, + [1584] = 1550, + [1585] = 1563, + [1586] = 1552, + [1587] = 1566, + [1588] = 1557, + [1589] = 1553, + [1590] = 1552, + [1591] = 1591, + [1592] = 1551, + [1593] = 1593, + [1594] = 1550, + [1595] = 1549, + [1596] = 1596, + [1597] = 1559, + [1598] = 1598, + [1599] = 1563, + [1600] = 1600, + [1601] = 1593, + [1602] = 1600, + [1603] = 1603, + [1604] = 1600, [1605] = 1605, - [1606] = 1572, - [1607] = 1533, - [1608] = 1537, - [1609] = 1530, - [1610] = 1542, - [1611] = 1570, - [1612] = 1564, - [1613] = 1566, - [1614] = 1542, - [1615] = 1543, - [1616] = 1548, + [1606] = 1563, + [1607] = 1607, + [1608] = 1565, + [1609] = 1566, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1593, + [1614] = 1546, + [1615] = 1615, + [1616] = 1600, [1617] = 1617, - [1618] = 1618, - [1619] = 1550, - [1620] = 1530, - [1621] = 1543, - [1622] = 1548, - [1623] = 1537, - [1624] = 1537, - [1625] = 1542, - [1626] = 1543, - [1627] = 1533, - [1628] = 1628, - [1629] = 1566, - [1630] = 1630, - [1631] = 1535, - [1632] = 1572, + [1618] = 1557, + [1619] = 1553, + [1620] = 1620, + [1621] = 1552, + [1622] = 1551, + [1623] = 1550, + [1624] = 1624, + [1625] = 1549, + [1626] = 1626, + [1627] = 1565, + [1628] = 1546, + [1629] = 1629, + [1630] = 1565, + [1631] = 1631, + [1632] = 1559, [1633] = 1633, - [1634] = 1634, - [1635] = 1635, - [1636] = 1636, - [1637] = 1637, - [1638] = 1638, + [1634] = 1546, + [1635] = 1565, + [1636] = 1546, + [1637] = 1600, + [1638] = 1593, [1639] = 1639, [1640] = 1640, - [1641] = 1641, - [1642] = 1642, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1635, - [1649] = 1647, + [1641] = 1593, + [1642] = 1565, + [1643] = 1565, + [1644] = 1600, + [1645] = 1593, + [1646] = 1546, + [1647] = 1565, + [1648] = 1648, + [1649] = 1649, [1650] = 1650, [1651] = 1651, - [1652] = 1646, + [1652] = 1652, [1653] = 1653, [1654] = 1654, - [1655] = 1644, - [1656] = 1639, + [1655] = 1655, + [1656] = 1656, [1657] = 1657, - [1658] = 1634, - [1659] = 1653, - [1660] = 1660, + [1658] = 1658, + [1659] = 1659, + [1660] = 1650, [1661] = 1661, [1662] = 1662, [1663] = 1653, - [1664] = 1644, - [1665] = 1639, + [1664] = 1664, + [1665] = 1665, [1666] = 1666, - [1667] = 1634, - [1668] = 1650, + [1667] = 1667, + [1668] = 1668, [1669] = 1669, - [1670] = 1653, - [1671] = 1639, + [1670] = 1670, + [1671] = 1662, [1672] = 1672, - [1673] = 1634, + [1673] = 1225, [1674] = 1674, - [1675] = 1640, - [1676] = 1653, - [1677] = 1639, - [1678] = 1678, - [1679] = 1634, - [1680] = 1680, - [1681] = 1681, - [1682] = 1682, - [1683] = 1680, - [1684] = 1645, - [1685] = 1685, - [1686] = 1643, - [1687] = 1645, - [1688] = 1678, - [1689] = 1689, - [1690] = 1690, - [1691] = 1644, + [1675] = 1652, + [1676] = 1650, + [1677] = 1652, + [1678] = 1674, + [1679] = 1679, + [1680] = 1661, + [1681] = 1672, + [1682] = 1674, + [1683] = 1652, + [1684] = 1684, + [1685] = 1650, + [1686] = 1686, + [1687] = 1674, + [1688] = 1672, + [1689] = 1652, + [1690] = 1666, + [1691] = 1650, [1692] = 1692, - [1693] = 1693, - [1694] = 1694, - [1695] = 1695, + [1693] = 1650, + [1694] = 1672, + [1695] = 1652, [1696] = 1696, - [1697] = 1697, - [1698] = 1698, + [1697] = 1650, + [1698] = 1650, [1699] = 1699, - [1700] = 1637, - [1701] = 1635, - [1702] = 1654, - [1703] = 1634, - [1704] = 1151, - [1705] = 1636, - [1706] = 1657, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1672, + [1704] = 1674, + [1705] = 1705, + [1706] = 1661, [1707] = 1707, - [1708] = 1639, - [1709] = 1709, - [1710] = 1644, - [1711] = 1646, - [1712] = 1647, + [1708] = 1708, + [1709] = 1668, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1165, - [1717] = 1135, + [1716] = 1716, + [1717] = 1717, [1718] = 1718, - [1719] = 1654, - [1720] = 1643, - [1721] = 1657, - [1722] = 1722, - [1723] = 1639, - [1724] = 1633, + [1719] = 1719, + [1720] = 1720, + [1721] = 1649, + [1722] = 1669, + [1723] = 1662, + [1724] = 1724, [1725] = 1725, - [1726] = 1726, - [1727] = 1727, - [1728] = 1653, - [1729] = 1660, - [1730] = 1730, + [1726] = 1670, + [1727] = 1679, + [1728] = 1728, + [1729] = 1729, + [1730] = 1686, [1731] = 1731, - [1732] = 1732, - [1733] = 1653, - [1734] = 1662, - [1735] = 1666, - [1736] = 1718, - [1737] = 1650, - [1738] = 1689, - [1739] = 1672, - [1740] = 1674, - [1741] = 1660, - [1742] = 1640, - [1743] = 1678, - [1744] = 1680, - [1745] = 1645, - [1746] = 1643, - [1747] = 1689, - [1748] = 1674, - [1749] = 1637, + [1732] = 1668, + [1733] = 1666, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1658, + [1738] = 1218, + [1739] = 1653, + [1740] = 1740, + [1741] = 1684, + [1742] = 1669, + [1743] = 1710, + [1744] = 1710, + [1745] = 1659, + [1746] = 1719, + [1747] = 1747, + [1748] = 1649, + [1749] = 1652, [1750] = 1750, - [1751] = 1681, - [1752] = 1682, - [1753] = 706, - [1754] = 1754, - [1755] = 1634, - [1756] = 1756, - [1757] = 1725, - [1758] = 1636, + [1751] = 1751, + [1752] = 1752, + [1753] = 1666, + [1754] = 1707, + [1755] = 1755, + [1756] = 1686, + [1757] = 1757, + [1758] = 1735, [1759] = 1759, - [1760] = 1690, - [1761] = 1636, - [1762] = 1636, + [1760] = 1668, + [1761] = 1658, + [1762] = 1762, [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1637, - [1767] = 1639, - [1768] = 1768, - [1769] = 1635, - [1770] = 1770, - [1771] = 1722, + [1764] = 1701, + [1765] = 1719, + [1766] = 1666, + [1767] = 1662, + [1768] = 1661, + [1769] = 1699, + [1770] = 1700, + [1771] = 1718, [1772] = 1772, - [1773] = 1633, - [1774] = 1774, - [1775] = 1644, - [1776] = 1669, - [1777] = 1777, - [1778] = 1646, - [1779] = 1681, - [1780] = 1682, - [1781] = 1647, - [1782] = 1634, - [1783] = 1166, - [1784] = 1784, - [1785] = 1654, - [1786] = 1690, + [1773] = 1692, + [1774] = 1686, + [1775] = 1775, + [1776] = 1776, + [1777] = 1662, + [1778] = 1708, + [1779] = 1779, + [1780] = 1724, + [1781] = 1204, + [1782] = 1705, + [1783] = 1679, + [1784] = 1661, + [1785] = 1684, + [1786] = 1649, [1787] = 1787, - [1788] = 1657, - [1789] = 1726, - [1790] = 1653, - [1791] = 1791, + [1788] = 1788, + [1789] = 1740, + [1790] = 1650, + [1791] = 1669, [1792] = 1792, - [1793] = 1660, - [1794] = 1722, + [1793] = 1793, + [1794] = 1794, [1795] = 1795, - [1796] = 1633, - [1797] = 1662, - [1798] = 1666, - [1799] = 1650, + [1796] = 1710, + [1797] = 1699, + [1798] = 1700, + [1799] = 1799, [1800] = 1800, - [1801] = 709, - [1802] = 1681, - [1803] = 1682, - [1804] = 1672, - [1805] = 1650, - [1806] = 1690, - [1807] = 1690, - [1808] = 1666, - [1809] = 1662, - [1810] = 1810, - [1811] = 1653, - [1812] = 1727, - [1813] = 1813, - [1814] = 1814, + [1801] = 1801, + [1802] = 1669, + [1803] = 1803, + [1804] = 1708, + [1805] = 1653, + [1806] = 1705, + [1807] = 1740, + [1808] = 1664, + [1809] = 1652, + [1810] = 1670, + [1811] = 1674, + [1812] = 1740, + [1813] = 713, + [1814] = 1669, [1815] = 1815, - [1816] = 1816, - [1817] = 1726, - [1818] = 1681, - [1819] = 1662, - [1820] = 1672, - [1821] = 1681, - [1822] = 1681, - [1823] = 1681, - [1824] = 1674, - [1825] = 1666, + [1816] = 1679, + [1817] = 1817, + [1818] = 1684, + [1819] = 1735, + [1820] = 1699, + [1821] = 1700, + [1822] = 707, + [1823] = 1670, + [1824] = 1824, + [1825] = 1708, [1826] = 1826, [1827] = 1827, - [1828] = 1826, - [1829] = 1640, - [1830] = 1650, - [1831] = 1831, - [1832] = 1678, - [1833] = 1726, - [1834] = 1756, - [1835] = 1680, - [1836] = 1657, - [1837] = 1661, - [1838] = 1645, - [1839] = 1839, - [1840] = 1654, - [1841] = 1725, - [1842] = 1842, - [1843] = 1633, - [1844] = 1844, + [1828] = 1653, + [1829] = 1692, + [1830] = 1830, + [1831] = 1736, + [1832] = 1724, + [1833] = 1696, + [1834] = 1718, + [1835] = 1652, + [1836] = 1699, + [1837] = 1659, + [1838] = 1672, + [1839] = 1699, + [1840] = 1699, + [1841] = 1699, + [1842] = 1168, + [1843] = 1843, + [1844] = 1692, [1845] = 1845, - [1846] = 1826, - [1847] = 1643, - [1848] = 1848, - [1849] = 1661, - [1850] = 1850, + [1846] = 1846, + [1847] = 1674, + [1848] = 1707, + [1849] = 1699, + [1850] = 1679, [1851] = 1851, - [1852] = 1852, + [1852] = 1684, [1853] = 1853, - [1854] = 1722, - [1855] = 1855, - [1856] = 1689, - [1857] = 1661, - [1858] = 1647, - [1859] = 1859, - [1860] = 1646, - [1861] = 1669, - [1862] = 1637, - [1863] = 1635, - [1864] = 1772, - [1865] = 1661, - [1866] = 1866, - [1867] = 1634, - [1868] = 1644, - [1869] = 1639, - [1870] = 1826, - [1871] = 1660, - [1872] = 1682, - [1873] = 1826, - [1874] = 1874, - [1875] = 1725, - [1876] = 1826, - [1877] = 1633, - [1878] = 1681, + [1854] = 1707, + [1855] = 1853, + [1856] = 1672, + [1857] = 1718, + [1858] = 1696, + [1859] = 1692, + [1860] = 1696, + [1861] = 1724, + [1862] = 1862, + [1863] = 1668, + [1864] = 1846, + [1865] = 1865, + [1866] = 1851, + [1867] = 1853, + [1868] = 1865, + [1869] = 1672, + [1870] = 1670, + [1871] = 1851, + [1872] = 1707, + [1873] = 1873, + [1874] = 1851, + [1875] = 1853, + [1876] = 1876, + [1877] = 1877, + [1878] = 1878, + [1879] = 1708, + [1880] = 1718, + [1881] = 1724, + [1882] = 1846, + [1883] = 1853, + [1884] = 1735, + [1885] = 1670, + [1886] = 1658, + [1887] = 1696, + [1888] = 1846, + [1889] = 1672, + [1890] = 1890, + [1891] = 1846, + [1892] = 1659, + [1893] = 1893, + [1894] = 1846, + [1895] = 1719, + [1896] = 1700, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -8563,6 +8584,7 @@ static inline bool sym_identifier_character_set_4(int32_t c) { static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(111); @@ -8599,7 +8621,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(222); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(109) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -8649,10 +8673,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(97); END_STATE(); case 11: - if (lookahead == '\n') SKIP(48) + if (lookahead == '\n') SKIP(49) END_STATE(); case 12: - if (lookahead == '\n') SKIP(48) + if (lookahead == '\n') SKIP(49) if (lookahead == '\r') SKIP(11) if (lookahead == 'U') ADVANCE(105); if (lookahead == 'u') ADVANCE(97); @@ -8667,10 +8691,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(97); END_STATE(); case 15: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(48) END_STATE(); case 16: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(48) if (lookahead == '\r') SKIP(15) if (lookahead == 'U') ADVANCE(105); if (lookahead == 'u') ADVANCE(97); @@ -8716,7 +8740,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(22) if (lookahead == '^') ADVANCE(200); if (lookahead == '|') ADVANCE(199); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(23) END_STATE(); case 24: @@ -8729,67 +8754,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(97); END_STATE(); case 26: + if (lookahead == '\n') SKIP(51) + if (lookahead == '"') ADVANCE(276); + if (lookahead == '/') ADVANCE(277); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(280); + if (lookahead != 0) ADVANCE(281); + END_STATE(); + case 27: + if (lookahead == '\n') ADVANCE(283); + if (lookahead == '\r') ADVANCE(282); + if (lookahead == 'U') ADVANCE(106); + if (lookahead == 'u') ADVANCE(98); + if (lookahead == 'x') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(285); + if (lookahead != 0) ADVANCE(282); + END_STATE(); + case 28: if (lookahead == '\n') ADVANCE(113); - if (lookahead == '\r') ADVANCE(30); + if (lookahead == '\r') ADVANCE(32); if (lookahead == '(') ADVANCE(115); if (lookahead == '/') ADVANCE(135); if (lookahead == '\\') ADVANCE(133); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '\t' || lookahead == ' ') SKIP(63) if (lookahead != 0) ADVANCE(136); END_STATE(); - case 27: + case 29: if (lookahead == '\n') ADVANCE(113); - if (lookahead == '\r') ADVANCE(30); + if (lookahead == '\r') ADVANCE(32); if (lookahead == '/') ADVANCE(135); if (lookahead == '\\') ADVANCE(133); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '\t' || lookahead == ' ') SKIP(63) if (lookahead != 0) ADVANCE(136); END_STATE(); - case 28: + case 30: if (lookahead == '\n') ADVANCE(113); - if (lookahead == '\r') ADVANCE(29); + if (lookahead == '\r') ADVANCE(31); if (lookahead == '(') ADVANCE(176); if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') SKIP(34) - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '\t' || lookahead == ' ') SKIP(54) END_STATE(); - case 29: + case 31: if (lookahead == '\n') ADVANCE(113); if (lookahead == '(') ADVANCE(176); if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') SKIP(34) - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(54) END_STATE(); - case 30: + case 32: if (lookahead == '\n') ADVANCE(113); if (lookahead == '/') ADVANCE(135); if (lookahead == '\\') ADVANCE(133); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(63) if (lookahead != 0) ADVANCE(136); END_STATE(); - case 31: - if (lookahead == '\n') SKIP(51) - if (lookahead == '"') ADVANCE(276); - if (lookahead == '/') ADVANCE(277); - if (lookahead == '\\') ADVANCE(32); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(280); - if (lookahead != 0) ADVANCE(281); - END_STATE(); - case 32: - if (lookahead == '\n') ADVANCE(283); - if (lookahead == '\r') ADVANCE(282); - if (lookahead == 'U') ADVANCE(106); - if (lookahead == 'u') ADVANCE(98); - if (lookahead == 'x') ADVANCE(94); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(285); - if (lookahead != 0) ADVANCE(282); - END_STATE(); case 33: if (lookahead == '\n') SKIP(54) END_STATE(); @@ -8801,7 +8829,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(62) if (lookahead == '/') ADVANCE(270); if (lookahead == '\\') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') ADVANCE(271); if (lookahead != 0 && lookahead != '\'') ADVANCE(268); @@ -8858,7 +8887,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(222); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(40) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -8896,7 +8927,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(222); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(41) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -8925,7 +8958,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(292); if (lookahead == '{') ADVANCE(221); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(42) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -8957,7 +8992,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(221); if (lookahead == '}') ADVANCE(222); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(43) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -8983,7 +9020,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(292); if (lookahead == '{') ADVANCE(221); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(44) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -9009,7 +9048,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(292); if (lookahead == '{') ADVANCE(221); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(45) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -9029,7 +9070,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(20); if (lookahead == 'u') ADVANCE(296); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(46) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -9062,64 +9105,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(293); if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(222); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(47) END_STATE(); case 48: if (lookahead == '!') ADVANCE(65); - if (lookahead == '#') ADVANCE(73); + if (lookahead == '#') ADVANCE(79); if (sym_identifier_character_set_2(lookahead)) ADVANCE(300); - if (lookahead == '%') ADVANCE(194); - if (lookahead == '&') ADVANCE(203); + if (lookahead == '%') ADVANCE(195); + if (lookahead == '&') ADVANCE(204); if (lookahead == '(') ADVANCE(176); if (lookahead == ')') ADVANCE(118); - if (lookahead == '*') ADVANCE(190); - if (lookahead == '+') ADVANCE(185); + if (lookahead == '*') ADVANCE(191); + if (lookahead == '+') ADVANCE(188); if (lookahead == ',') ADVANCE(117); - if (lookahead == '-') ADVANCE(180); - if (lookahead == '.') ADVANCE(60); - if (lookahead == '/') ADVANCE(192); + if (lookahead == '-') ADVANCE(183); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(193); if (lookahead == ':') ADVANCE(228); if (lookahead == ';') ADVANCE(217); - if (lookahead == '<') ADVANCE(212); + if (lookahead == '<') ADVANCE(211); if (lookahead == '=') ADVANCE(227); - if (lookahead == '>') ADVANCE(208); + if (lookahead == '>') ADVANCE(207); + if (lookahead == '?') ADVANCE(229); if (lookahead == '[') ADVANCE(224); - if (lookahead == '\\') ADVANCE(12); - if (lookahead == '^') ADVANCE(200); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(201); if (lookahead == '{') ADVANCE(221); - if (lookahead == '|') ADVANCE(199); + if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(222); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(48) END_STATE(); case 49: if (lookahead == '!') ADVANCE(65); - if (lookahead == '#') ADVANCE(75); + if (lookahead == '#') ADVANCE(73); if (sym_identifier_character_set_2(lookahead)) ADVANCE(300); - if (lookahead == '%') ADVANCE(195); - if (lookahead == '&') ADVANCE(204); + if (lookahead == '%') ADVANCE(194); + if (lookahead == '&') ADVANCE(203); if (lookahead == '(') ADVANCE(176); if (lookahead == ')') ADVANCE(118); - if (lookahead == '*') ADVANCE(191); - if (lookahead == '+') ADVANCE(188); + if (lookahead == '*') ADVANCE(190); + if (lookahead == '+') ADVANCE(185); if (lookahead == ',') ADVANCE(117); - if (lookahead == '-') ADVANCE(183); - if (lookahead == '.') ADVANCE(242); - if (lookahead == '/') ADVANCE(193); + if (lookahead == '-') ADVANCE(180); + if (lookahead == '.') ADVANCE(60); + if (lookahead == '/') ADVANCE(192); if (lookahead == ':') ADVANCE(228); if (lookahead == ';') ADVANCE(217); - if (lookahead == '<') ADVANCE(211); + if (lookahead == '<') ADVANCE(212); if (lookahead == '=') ADVANCE(227); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(229); + if (lookahead == '>') ADVANCE(208); if (lookahead == '[') ADVANCE(224); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == ']') ADVANCE(71); - if (lookahead == '^') ADVANCE(201); - if (lookahead == '|') ADVANCE(198); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == '^') ADVANCE(200); + if (lookahead == '{') ADVANCE(221); + if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(222); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(49) END_STATE(); case 50: @@ -9144,19 +9194,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(229); if (lookahead == '[') ADVANCE(224); if (lookahead == '\\') ADVANCE(14); - if (lookahead == ']') ADVANCE(225); + if (lookahead == ']') ADVANCE(71); if (lookahead == '^') ADVANCE(201); - if (lookahead == '{') ADVANCE(221); if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(222); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(50) END_STATE(); case 51: if (lookahead == '"') ADVANCE(276); if (lookahead == '/') ADVANCE(55); - if (lookahead == '\\') ADVANCE(32); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(51) END_STATE(); case 52: @@ -9168,24 +9221,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U') ADVANCE(291); if (lookahead == '\\') ADVANCE(25); if (lookahead == 'u') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(52) END_STATE(); case 53: - if (lookahead == '#') ADVANCE(79); + if (lookahead == '#') ADVANCE(75); if (sym_identifier_character_set_2(lookahead)) ADVANCE(300); if (lookahead == '/') ADVANCE(55); if (lookahead == '[') ADVANCE(70); if (lookahead == '\\') ADVANCE(18); - if (lookahead == '}') ADVANCE(222); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(53) END_STATE(); case 54: if (lookahead == '(') ADVANCE(176); if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') SKIP(34) - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(54) END_STATE(); case 55: @@ -9220,14 +9278,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 62: if (lookahead == '/') ADVANCE(55); - if (lookahead == '\\') ADVANCE(32); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(62) END_STATE(); case 63: if (lookahead == '/') ADVANCE(135); if (lookahead == '\\') ADVANCE(133); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(63) if (lookahead != 0) ADVANCE(136); END_STATE(); @@ -9509,7 +9571,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(222); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(109) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -9542,7 +9606,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(221); if (lookahead == '}') ADVANCE(222); if (lookahead == '~') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(110) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(251); END_STATE(); @@ -10635,7 +10701,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 271: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(32); + if (lookahead == '\\') ADVANCE(27); END_STATE(); case 272: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -10682,7 +10748,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead == '/') ADVANCE(277); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || + lookahead == '\r' || lookahead == ' ') ADVANCE(280); if (lookahead != 0 && lookahead != '\n' && @@ -10701,7 +10767,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 283: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(32); + if (lookahead == '\\') ADVANCE(27); END_STATE(); case 284: ACCEPT_TOKEN(sym_escape_sequence); @@ -10874,6 +10940,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: if (lookahead == 'F') ADVANCE(1); @@ -10900,7 +10967,9 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(22); if (lookahead == 'v') ADVANCE(23); if (lookahead == 'w') ADVANCE(24); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: @@ -12480,7 +12549,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11] = {.lex_state = 42}, [12] = {.lex_state = 45}, [13] = {.lex_state = 45}, - [14] = {.lex_state = 45}, + [14] = {.lex_state = 42}, [15] = {.lex_state = 45}, [16] = {.lex_state = 45}, [17] = {.lex_state = 45}, @@ -12492,11 +12561,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 45}, [24] = {.lex_state = 45}, [25] = {.lex_state = 45}, - [26] = {.lex_state = 42}, + [26] = {.lex_state = 45}, [27] = {.lex_state = 45}, [28] = {.lex_state = 110}, - [29] = {.lex_state = 44}, - [30] = {.lex_state = 110}, + [29] = {.lex_state = 110}, + [30] = {.lex_state = 44}, [31] = {.lex_state = 110}, [32] = {.lex_state = 110}, [33] = {.lex_state = 110}, @@ -12512,11 +12581,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 110}, [44] = {.lex_state = 110}, [45] = {.lex_state = 110}, - [46] = {.lex_state = 44}, + [46] = {.lex_state = 110}, [47] = {.lex_state = 110}, - [48] = {.lex_state = 110}, - [49] = {.lex_state = 110}, - [50] = {.lex_state = 44}, + [48] = {.lex_state = 44}, + [49] = {.lex_state = 44}, + [50] = {.lex_state = 110}, [51] = {.lex_state = 110}, [52] = {.lex_state = 110}, [53] = {.lex_state = 110}, @@ -12530,20 +12599,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 45}, [62] = {.lex_state = 45}, [63] = {.lex_state = 45}, - [64] = {.lex_state = 110}, + [64] = {.lex_state = 44}, [65] = {.lex_state = 110}, [66] = {.lex_state = 110}, [67] = {.lex_state = 110}, - [68] = {.lex_state = 110}, + [68] = {.lex_state = 44}, [69] = {.lex_state = 44}, - [70] = {.lex_state = 44}, + [70] = {.lex_state = 110}, [71] = {.lex_state = 110}, [72] = {.lex_state = 110}, [73] = {.lex_state = 110}, [74] = {.lex_state = 110}, - [75] = {.lex_state = 110}, - [76] = {.lex_state = 44}, - [77] = {.lex_state = 44}, + [75] = {.lex_state = 44}, + [76] = {.lex_state = 110}, + [77] = {.lex_state = 110}, [78] = {.lex_state = 44}, [79] = {.lex_state = 110}, [80] = {.lex_state = 110}, @@ -12562,16 +12631,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [93] = {.lex_state = 42}, [94] = {.lex_state = 42}, [95] = {.lex_state = 42}, - [96] = {.lex_state = 110}, + [96] = {.lex_state = 42}, [97] = {.lex_state = 42}, [98] = {.lex_state = 42}, [99] = {.lex_state = 42}, [100] = {.lex_state = 42}, [101] = {.lex_state = 42}, - [102] = {.lex_state = 110}, + [102] = {.lex_state = 42}, [103] = {.lex_state = 42}, [104] = {.lex_state = 42}, - [105] = {.lex_state = 42}, + [105] = {.lex_state = 110}, [106] = {.lex_state = 42}, [107] = {.lex_state = 42}, [108] = {.lex_state = 42}, @@ -12595,7 +12664,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 42}, [127] = {.lex_state = 42}, [128] = {.lex_state = 42}, - [129] = {.lex_state = 42}, + [129] = {.lex_state = 110}, [130] = {.lex_state = 42}, [131] = {.lex_state = 42}, [132] = {.lex_state = 42}, @@ -12603,7 +12672,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 42}, [135] = {.lex_state = 42}, [136] = {.lex_state = 42}, - [137] = {.lex_state = 45}, + [137] = {.lex_state = 42}, [138] = {.lex_state = 42}, [139] = {.lex_state = 42}, [140] = {.lex_state = 42}, @@ -12619,7 +12688,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [150] = {.lex_state = 42}, [151] = {.lex_state = 42}, [152] = {.lex_state = 42}, - [153] = {.lex_state = 42}, + [153] = {.lex_state = 45}, [154] = {.lex_state = 42}, [155] = {.lex_state = 42}, [156] = {.lex_state = 42}, @@ -12673,16 +12742,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [204] = {.lex_state = 45}, [205] = {.lex_state = 45}, [206] = {.lex_state = 45}, - [207] = {.lex_state = 110}, - [208] = {.lex_state = 45}, + [207] = {.lex_state = 45}, + [208] = {.lex_state = 110}, [209] = {.lex_state = 45}, [210] = {.lex_state = 45}, - [211] = {.lex_state = 45}, + [211] = {.lex_state = 44}, [212] = {.lex_state = 45}, - [213] = {.lex_state = 110}, + [213] = {.lex_state = 45}, [214] = {.lex_state = 45}, [215] = {.lex_state = 45}, - [216] = {.lex_state = 45}, + [216] = {.lex_state = 110}, [217] = {.lex_state = 45}, [218] = {.lex_state = 45}, [219] = {.lex_state = 45}, @@ -12692,7 +12761,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [223] = {.lex_state = 45}, [224] = {.lex_state = 45}, [225] = {.lex_state = 45}, - [226] = {.lex_state = 44}, + [226] = {.lex_state = 45}, [227] = {.lex_state = 45}, [228] = {.lex_state = 45}, [229] = {.lex_state = 45}, @@ -12719,68 +12788,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [250] = {.lex_state = 110}, [251] = {.lex_state = 110}, [252] = {.lex_state = 110}, - [253] = {.lex_state = 110}, - [254] = {.lex_state = 110}, - [255] = {.lex_state = 41}, + [253] = {.lex_state = 44}, + [254] = {.lex_state = 44}, + [255] = {.lex_state = 44}, [256] = {.lex_state = 110}, [257] = {.lex_state = 110}, [258] = {.lex_state = 110}, [259] = {.lex_state = 110}, [260] = {.lex_state = 110}, - [261] = {.lex_state = 110}, + [261] = {.lex_state = 44}, [262] = {.lex_state = 110}, - [263] = {.lex_state = 110}, + [263] = {.lex_state = 44}, [264] = {.lex_state = 110}, [265] = {.lex_state = 110}, - [266] = {.lex_state = 110}, + [266] = {.lex_state = 44}, [267] = {.lex_state = 110}, - [268] = {.lex_state = 110}, + [268] = {.lex_state = 44}, [269] = {.lex_state = 110}, - [270] = {.lex_state = 110}, - [271] = {.lex_state = 110}, + [270] = {.lex_state = 44}, + [271] = {.lex_state = 44}, [272] = {.lex_state = 110}, [273] = {.lex_state = 110}, [274] = {.lex_state = 110}, - [275] = {.lex_state = 110}, + [275] = {.lex_state = 41}, [276] = {.lex_state = 110}, [277] = {.lex_state = 110}, - [278] = {.lex_state = 110}, - [279] = {.lex_state = 110}, + [278] = {.lex_state = 44}, + [279] = {.lex_state = 44}, [280] = {.lex_state = 110}, - [281] = {.lex_state = 110}, - [282] = {.lex_state = 110}, - [283] = {.lex_state = 110}, + [281] = {.lex_state = 44}, + [282] = {.lex_state = 44}, + [283] = {.lex_state = 44}, [284] = {.lex_state = 110}, [285] = {.lex_state = 110}, [286] = {.lex_state = 110}, - [287] = {.lex_state = 110}, + [287] = {.lex_state = 44}, [288] = {.lex_state = 110}, [289] = {.lex_state = 110}, - [290] = {.lex_state = 110}, - [291] = {.lex_state = 110}, + [290] = {.lex_state = 44}, + [291] = {.lex_state = 44}, [292] = {.lex_state = 110}, [293] = {.lex_state = 110}, [294] = {.lex_state = 110}, - [295] = {.lex_state = 44}, - [296] = {.lex_state = 110}, + [295] = {.lex_state = 110}, + [296] = {.lex_state = 44}, [297] = {.lex_state = 110}, - [298] = {.lex_state = 110}, - [299] = {.lex_state = 110}, + [298] = {.lex_state = 44}, + [299] = {.lex_state = 44}, [300] = {.lex_state = 110}, - [301] = {.lex_state = 110}, + [301] = {.lex_state = 44}, [302] = {.lex_state = 110}, [303] = {.lex_state = 110}, [304] = {.lex_state = 110}, - [305] = {.lex_state = 44}, - [306] = {.lex_state = 44}, + [305] = {.lex_state = 110}, + [306] = {.lex_state = 110}, [307] = {.lex_state = 110}, [308] = {.lex_state = 110}, [309] = {.lex_state = 110}, [310] = {.lex_state = 110}, [311] = {.lex_state = 110}, - [312] = {.lex_state = 110}, + [312] = {.lex_state = 44}, [313] = {.lex_state = 110}, - [314] = {.lex_state = 44}, + [314] = {.lex_state = 110}, [315] = {.lex_state = 44}, [316] = {.lex_state = 44}, [317] = {.lex_state = 44}, @@ -12788,74 +12857,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [319] = {.lex_state = 110}, [320] = {.lex_state = 44}, [321] = {.lex_state = 44}, - [322] = {.lex_state = 44}, - [323] = {.lex_state = 44}, - [324] = {.lex_state = 44}, + [322] = {.lex_state = 110}, + [323] = {.lex_state = 110}, + [324] = {.lex_state = 110}, [325] = {.lex_state = 44}, [326] = {.lex_state = 44}, - [327] = {.lex_state = 44}, - [328] = {.lex_state = 44}, - [329] = {.lex_state = 110}, - [330] = {.lex_state = 44}, + [327] = {.lex_state = 110}, + [328] = {.lex_state = 110}, + [329] = {.lex_state = 44}, + [330] = {.lex_state = 110}, [331] = {.lex_state = 44}, - [332] = {.lex_state = 44}, + [332] = {.lex_state = 110}, [333] = {.lex_state = 44}, - [334] = {.lex_state = 44}, + [334] = {.lex_state = 110}, [335] = {.lex_state = 44}, [336] = {.lex_state = 44}, - [337] = {.lex_state = 44}, + [337] = {.lex_state = 110}, [338] = {.lex_state = 44}, - [339] = {.lex_state = 44}, - [340] = {.lex_state = 44}, + [339] = {.lex_state = 110}, + [340] = {.lex_state = 110}, [341] = {.lex_state = 44}, - [342] = {.lex_state = 44}, + [342] = {.lex_state = 110}, [343] = {.lex_state = 44}, - [344] = {.lex_state = 44}, - [345] = {.lex_state = 44}, - [346] = {.lex_state = 44}, + [344] = {.lex_state = 110}, + [345] = {.lex_state = 110}, + [346] = {.lex_state = 110}, [347] = {.lex_state = 44}, - [348] = {.lex_state = 44}, - [349] = {.lex_state = 44}, - [350] = {.lex_state = 44}, + [348] = {.lex_state = 110}, + [349] = {.lex_state = 110}, + [350] = {.lex_state = 110}, [351] = {.lex_state = 44}, - [352] = {.lex_state = 44}, - [353] = {.lex_state = 44}, - [354] = {.lex_state = 110}, + [352] = {.lex_state = 110}, + [353] = {.lex_state = 110}, + [354] = {.lex_state = 44}, [355] = {.lex_state = 44}, - [356] = {.lex_state = 44}, - [357] = {.lex_state = 44}, - [358] = {.lex_state = 44}, - [359] = {.lex_state = 110}, + [356] = {.lex_state = 110}, + [357] = {.lex_state = 110}, + [358] = {.lex_state = 110}, + [359] = {.lex_state = 44}, [360] = {.lex_state = 44}, [361] = {.lex_state = 44}, - [362] = {.lex_state = 44}, + [362] = {.lex_state = 110}, [363] = {.lex_state = 44}, [364] = {.lex_state = 110}, [365] = {.lex_state = 44}, [366] = {.lex_state = 44}, [367] = {.lex_state = 44}, - [368] = {.lex_state = 44}, + [368] = {.lex_state = 110}, [369] = {.lex_state = 110}, - [370] = {.lex_state = 44}, - [371] = {.lex_state = 110}, - [372] = {.lex_state = 44}, - [373] = {.lex_state = 44}, - [374] = {.lex_state = 110}, - [375] = {.lex_state = 110}, + [370] = {.lex_state = 110}, + [371] = {.lex_state = 44}, + [372] = {.lex_state = 110}, + [373] = {.lex_state = 110}, + [374] = {.lex_state = 44}, + [375] = {.lex_state = 44}, [376] = {.lex_state = 110}, - [377] = {.lex_state = 110}, + [377] = {.lex_state = 44}, [378] = {.lex_state = 44}, - [379] = {.lex_state = 110}, + [379] = {.lex_state = 44}, [380] = {.lex_state = 44}, [381] = {.lex_state = 110}, [382] = {.lex_state = 110}, [383] = {.lex_state = 110}, - [384] = {.lex_state = 44}, - [385] = {.lex_state = 44}, - [386] = {.lex_state = 44}, + [384] = {.lex_state = 110}, + [385] = {.lex_state = 110}, + [386] = {.lex_state = 110}, [387] = {.lex_state = 44}, - [388] = {.lex_state = 110}, - [389] = {.lex_state = 110}, + [388] = {.lex_state = 44}, + [389] = {.lex_state = 44}, [390] = {.lex_state = 110}, [391] = {.lex_state = 110}, [392] = {.lex_state = 44}, @@ -12864,13 +12933,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 110}, [396] = {.lex_state = 44}, [397] = {.lex_state = 44}, - [398] = {.lex_state = 110}, - [399] = {.lex_state = 110}, + [398] = {.lex_state = 44}, + [399] = {.lex_state = 44}, [400] = {.lex_state = 110}, [401] = {.lex_state = 110}, [402] = {.lex_state = 110}, [403] = {.lex_state = 110}, - [404] = {.lex_state = 110}, + [404] = {.lex_state = 44}, [405] = {.lex_state = 110}, [406] = {.lex_state = 110}, [407] = {.lex_state = 110}, @@ -12960,40 +13029,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [491] = {.lex_state = 110}, [492] = {.lex_state = 110}, [493] = {.lex_state = 41}, - [494] = {.lex_state = 110}, - [495] = {.lex_state = 110}, - [496] = {.lex_state = 110}, - [497] = {.lex_state = 110}, - [498] = {.lex_state = 110}, - [499] = {.lex_state = 110}, - [500] = {.lex_state = 110}, - [501] = {.lex_state = 110}, - [502] = {.lex_state = 110}, - [503] = {.lex_state = 110}, + [494] = {.lex_state = 47}, + [495] = {.lex_state = 47}, + [496] = {.lex_state = 47}, + [497] = {.lex_state = 47}, + [498] = {.lex_state = 47}, + [499] = {.lex_state = 47}, + [500] = {.lex_state = 47}, + [501] = {.lex_state = 47}, + [502] = {.lex_state = 47}, + [503] = {.lex_state = 47}, [504] = {.lex_state = 47}, - [505] = {.lex_state = 47}, + [505] = {.lex_state = 49}, [506] = {.lex_state = 47}, - [507] = {.lex_state = 47}, - [508] = {.lex_state = 47}, - [509] = {.lex_state = 47}, - [510] = {.lex_state = 47}, - [511] = {.lex_state = 47}, - [512] = {.lex_state = 47}, - [513] = {.lex_state = 47}, + [507] = {.lex_state = 110}, + [508] = {.lex_state = 110}, + [509] = {.lex_state = 110}, + [510] = {.lex_state = 110}, + [511] = {.lex_state = 110}, + [512] = {.lex_state = 110}, + [513] = {.lex_state = 110}, [514] = {.lex_state = 110}, - [515] = {.lex_state = 47}, - [516] = {.lex_state = 47}, - [517] = {.lex_state = 48}, - [518] = {.lex_state = 48}, - [519] = {.lex_state = 110}, + [515] = {.lex_state = 110}, + [516] = {.lex_state = 110}, + [517] = {.lex_state = 110}, + [518] = {.lex_state = 49}, + [519] = {.lex_state = 49}, [520] = {.lex_state = 110}, - [521] = {.lex_state = 48}, - [522] = {.lex_state = 48}, - [523] = {.lex_state = 48}, - [524] = {.lex_state = 48}, - [525] = {.lex_state = 48}, - [526] = {.lex_state = 48}, - [527] = {.lex_state = 48}, + [521] = {.lex_state = 49}, + [522] = {.lex_state = 49}, + [523] = {.lex_state = 49}, + [524] = {.lex_state = 110}, + [525] = {.lex_state = 49}, + [526] = {.lex_state = 49}, + [527] = {.lex_state = 49}, [528] = {.lex_state = 110}, [529] = {.lex_state = 50}, [530] = {.lex_state = 50}, @@ -13001,30 +13070,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [532] = {.lex_state = 50}, [533] = {.lex_state = 50}, [534] = {.lex_state = 50}, - [535] = {.lex_state = 48}, + [535] = {.lex_state = 50}, [536] = {.lex_state = 50}, [537] = {.lex_state = 50}, [538] = {.lex_state = 50}, - [539] = {.lex_state = 50}, - [540] = {.lex_state = 110}, - [541] = {.lex_state = 50}, + [539] = {.lex_state = 49}, + [540] = {.lex_state = 50}, + [541] = {.lex_state = 110}, [542] = {.lex_state = 110}, [543] = {.lex_state = 110}, - [544] = {.lex_state = 49}, + [544] = {.lex_state = 110}, [545] = {.lex_state = 110}, - [546] = {.lex_state = 49}, - [547] = {.lex_state = 49}, - [548] = {.lex_state = 53}, - [549] = {.lex_state = 110}, + [546] = {.lex_state = 110}, + [547] = {.lex_state = 110}, + [548] = {.lex_state = 110}, + [549] = {.lex_state = 48}, [550] = {.lex_state = 110}, [551] = {.lex_state = 110}, - [552] = {.lex_state = 53}, + [552] = {.lex_state = 110}, [553] = {.lex_state = 110}, [554] = {.lex_state = 110}, [555] = {.lex_state = 110}, [556] = {.lex_state = 110}, - [557] = {.lex_state = 110}, - [558] = {.lex_state = 110}, + [557] = {.lex_state = 53}, + [558] = {.lex_state = 48}, [559] = {.lex_state = 110}, [560] = {.lex_state = 110}, [561] = {.lex_state = 110}, @@ -13032,16 +13101,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [563] = {.lex_state = 110}, [564] = {.lex_state = 53}, [565] = {.lex_state = 110}, - [566] = {.lex_state = 110}, + [566] = {.lex_state = 48}, [567] = {.lex_state = 110}, [568] = {.lex_state = 110}, - [569] = {.lex_state = 110}, + [569] = {.lex_state = 53}, [570] = {.lex_state = 110}, [571] = {.lex_state = 110}, [572] = {.lex_state = 110}, [573] = {.lex_state = 110}, - [574] = {.lex_state = 48}, - [575] = {.lex_state = 110}, + [574] = {.lex_state = 110}, + [575] = {.lex_state = 49}, [576] = {.lex_state = 110}, [577] = {.lex_state = 110}, [578] = {.lex_state = 110}, @@ -13136,380 +13205,380 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [667] = {.lex_state = 110}, [668] = {.lex_state = 110}, [669] = {.lex_state = 110}, - [670] = {.lex_state = 48}, - [671] = {.lex_state = 48}, - [672] = {.lex_state = 48}, - [673] = {.lex_state = 48}, - [674] = {.lex_state = 48}, + [670] = {.lex_state = 49}, + [671] = {.lex_state = 49}, + [672] = {.lex_state = 49}, + [673] = {.lex_state = 49}, + [674] = {.lex_state = 49}, [675] = {.lex_state = 47}, [676] = {.lex_state = 47}, [677] = {.lex_state = 110}, - [678] = {.lex_state = 110}, + [678] = {.lex_state = 47}, [679] = {.lex_state = 47}, - [680] = {.lex_state = 110}, - [681] = {.lex_state = 47}, - [682] = {.lex_state = 48}, - [683] = {.lex_state = 48}, - [684] = {.lex_state = 48}, - [685] = {.lex_state = 48}, - [686] = {.lex_state = 48}, - [687] = {.lex_state = 48}, - [688] = {.lex_state = 48}, - [689] = {.lex_state = 48}, - [690] = {.lex_state = 48}, - [691] = {.lex_state = 48}, - [692] = {.lex_state = 48}, - [693] = {.lex_state = 48}, - [694] = {.lex_state = 48}, - [695] = {.lex_state = 48}, - [696] = {.lex_state = 48}, - [697] = {.lex_state = 48}, - [698] = {.lex_state = 48}, - [699] = {.lex_state = 48}, - [700] = {.lex_state = 48}, - [701] = {.lex_state = 48}, - [702] = {.lex_state = 48}, - [703] = {.lex_state = 48}, - [704] = {.lex_state = 47}, - [705] = {.lex_state = 47}, - [706] = {.lex_state = 47}, - [707] = {.lex_state = 48}, - [708] = {.lex_state = 48}, - [709] = {.lex_state = 47}, - [710] = {.lex_state = 48}, - [711] = {.lex_state = 47}, - [712] = {.lex_state = 110}, - [713] = {.lex_state = 50}, - [714] = {.lex_state = 50}, - [715] = {.lex_state = 50}, - [716] = {.lex_state = 50}, - [717] = {.lex_state = 50}, - [718] = {.lex_state = 50}, - [719] = {.lex_state = 50}, - [720] = {.lex_state = 50}, - [721] = {.lex_state = 50}, - [722] = {.lex_state = 50}, + [680] = {.lex_state = 49}, + [681] = {.lex_state = 110}, + [682] = {.lex_state = 110}, + [683] = {.lex_state = 49}, + [684] = {.lex_state = 49}, + [685] = {.lex_state = 49}, + [686] = {.lex_state = 49}, + [687] = {.lex_state = 49}, + [688] = {.lex_state = 49}, + [689] = {.lex_state = 49}, + [690] = {.lex_state = 49}, + [691] = {.lex_state = 49}, + [692] = {.lex_state = 49}, + [693] = {.lex_state = 49}, + [694] = {.lex_state = 49}, + [695] = {.lex_state = 49}, + [696] = {.lex_state = 49}, + [697] = {.lex_state = 49}, + [698] = {.lex_state = 49}, + [699] = {.lex_state = 49}, + [700] = {.lex_state = 49}, + [701] = {.lex_state = 49}, + [702] = {.lex_state = 49}, + [703] = {.lex_state = 49}, + [704] = {.lex_state = 49}, + [705] = {.lex_state = 50}, + [706] = {.lex_state = 50}, + [707] = {.lex_state = 47}, + [708] = {.lex_state = 49}, + [709] = {.lex_state = 50}, + [710] = {.lex_state = 50}, + [711] = {.lex_state = 49}, + [712] = {.lex_state = 49}, + [713] = {.lex_state = 47}, + [714] = {.lex_state = 49}, + [715] = {.lex_state = 47}, + [716] = {.lex_state = 47}, + [717] = {.lex_state = 47}, + [718] = {.lex_state = 48}, + [719] = {.lex_state = 48}, + [720] = {.lex_state = 48}, + [721] = {.lex_state = 48}, + [722] = {.lex_state = 48}, [723] = {.lex_state = 48}, [724] = {.lex_state = 48}, [725] = {.lex_state = 48}, [726] = {.lex_state = 48}, [727] = {.lex_state = 48}, - [728] = {.lex_state = 48}, - [729] = {.lex_state = 48}, - [730] = {.lex_state = 48}, - [731] = {.lex_state = 48}, - [732] = {.lex_state = 48}, - [733] = {.lex_state = 47}, - [734] = {.lex_state = 47}, - [735] = {.lex_state = 47}, - [736] = {.lex_state = 47}, - [737] = {.lex_state = 110}, - [738] = {.lex_state = 47}, - [739] = {.lex_state = 48}, + [728] = {.lex_state = 110}, + [729] = {.lex_state = 49}, + [730] = {.lex_state = 49}, + [731] = {.lex_state = 49}, + [732] = {.lex_state = 49}, + [733] = {.lex_state = 49}, + [734] = {.lex_state = 49}, + [735] = {.lex_state = 49}, + [736] = {.lex_state = 49}, + [737] = {.lex_state = 49}, + [738] = {.lex_state = 49}, + [739] = {.lex_state = 49}, [740] = {.lex_state = 47}, - [741] = {.lex_state = 48}, - [742] = {.lex_state = 50}, - [743] = {.lex_state = 49}, - [744] = {.lex_state = 50}, - [745] = {.lex_state = 50}, + [741] = {.lex_state = 49}, + [742] = {.lex_state = 47}, + [743] = {.lex_state = 47}, + [744] = {.lex_state = 49}, + [745] = {.lex_state = 110}, [746] = {.lex_state = 49}, - [747] = {.lex_state = 50}, - [748] = {.lex_state = 50}, - [749] = {.lex_state = 50}, - [750] = {.lex_state = 50}, + [747] = {.lex_state = 49}, + [748] = {.lex_state = 47}, + [749] = {.lex_state = 49}, + [750] = {.lex_state = 47}, [751] = {.lex_state = 49}, - [752] = {.lex_state = 50}, - [753] = {.lex_state = 50}, - [754] = {.lex_state = 50}, - [755] = {.lex_state = 50}, - [756] = {.lex_state = 50}, - [757] = {.lex_state = 50}, - [758] = {.lex_state = 50}, + [752] = {.lex_state = 47}, + [753] = {.lex_state = 49}, + [754] = {.lex_state = 49}, + [755] = {.lex_state = 48}, + [756] = {.lex_state = 49}, + [757] = {.lex_state = 49}, + [758] = {.lex_state = 49}, [759] = {.lex_state = 50}, - [760] = {.lex_state = 50}, + [760] = {.lex_state = 48}, [761] = {.lex_state = 50}, - [762] = {.lex_state = 50}, - [763] = {.lex_state = 50}, + [762] = {.lex_state = 49}, + [763] = {.lex_state = 48}, [764] = {.lex_state = 50}, - [765] = {.lex_state = 50}, + [765] = {.lex_state = 49}, [766] = {.lex_state = 49}, - [767] = {.lex_state = 50}, - [768] = {.lex_state = 50}, - [769] = {.lex_state = 50}, - [770] = {.lex_state = 50}, + [767] = {.lex_state = 48}, + [768] = {.lex_state = 49}, + [769] = {.lex_state = 49}, + [770] = {.lex_state = 49}, [771] = {.lex_state = 48}, [772] = {.lex_state = 50}, [773] = {.lex_state = 50}, - [774] = {.lex_state = 50}, - [775] = {.lex_state = 47}, - [776] = {.lex_state = 50}, - [777] = {.lex_state = 50}, + [774] = {.lex_state = 48}, + [775] = {.lex_state = 48}, + [776] = {.lex_state = 49}, + [777] = {.lex_state = 49}, [778] = {.lex_state = 50}, [779] = {.lex_state = 50}, - [780] = {.lex_state = 50}, - [781] = {.lex_state = 50}, + [780] = {.lex_state = 49}, + [781] = {.lex_state = 49}, [782] = {.lex_state = 50}, - [783] = {.lex_state = 50}, + [783] = {.lex_state = 49}, [784] = {.lex_state = 48}, - [785] = {.lex_state = 48}, - [786] = {.lex_state = 48}, + [785] = {.lex_state = 50}, + [786] = {.lex_state = 49}, [787] = {.lex_state = 48}, - [788] = {.lex_state = 48}, - [789] = {.lex_state = 48}, + [788] = {.lex_state = 49}, + [789] = {.lex_state = 50}, [790] = {.lex_state = 48}, - [791] = {.lex_state = 48}, - [792] = {.lex_state = 48}, + [791] = {.lex_state = 50}, + [792] = {.lex_state = 50}, [793] = {.lex_state = 48}, - [794] = {.lex_state = 48}, + [794] = {.lex_state = 49}, [795] = {.lex_state = 48}, - [796] = {.lex_state = 48}, - [797] = {.lex_state = 48}, + [796] = {.lex_state = 50}, + [797] = {.lex_state = 49}, [798] = {.lex_state = 48}, [799] = {.lex_state = 48}, - [800] = {.lex_state = 48}, + [800] = {.lex_state = 47}, [801] = {.lex_state = 48}, [802] = {.lex_state = 50}, [803] = {.lex_state = 50}, [804] = {.lex_state = 50}, [805] = {.lex_state = 50}, - [806] = {.lex_state = 50}, + [806] = {.lex_state = 48}, [807] = {.lex_state = 48}, [808] = {.lex_state = 50}, - [809] = {.lex_state = 50}, - [810] = {.lex_state = 48}, - [811] = {.lex_state = 48}, - [812] = {.lex_state = 48}, - [813] = {.lex_state = 50}, + [809] = {.lex_state = 49}, + [810] = {.lex_state = 49}, + [811] = {.lex_state = 49}, + [812] = {.lex_state = 49}, + [813] = {.lex_state = 49}, [814] = {.lex_state = 50}, - [815] = {.lex_state = 50}, - [816] = {.lex_state = 50}, - [817] = {.lex_state = 48}, - [818] = {.lex_state = 50}, - [819] = {.lex_state = 50}, - [820] = {.lex_state = 50}, - [821] = {.lex_state = 50}, - [822] = {.lex_state = 50}, - [823] = {.lex_state = 50}, - [824] = {.lex_state = 48}, - [825] = {.lex_state = 50}, - [826] = {.lex_state = 48}, - [827] = {.lex_state = 48}, - [828] = {.lex_state = 48}, - [829] = {.lex_state = 48}, - [830] = {.lex_state = 47}, - [831] = {.lex_state = 48}, - [832] = {.lex_state = 47}, - [833] = {.lex_state = 47}, - [834] = {.lex_state = 47}, - [835] = {.lex_state = 48}, - [836] = {.lex_state = 48}, - [837] = {.lex_state = 47}, - [838] = {.lex_state = 47}, - [839] = {.lex_state = 47}, - [840] = {.lex_state = 47}, - [841] = {.lex_state = 47}, - [842] = {.lex_state = 47}, - [843] = {.lex_state = 47}, - [844] = {.lex_state = 47}, - [845] = {.lex_state = 47}, - [846] = {.lex_state = 47}, - [847] = {.lex_state = 47}, - [848] = {.lex_state = 47}, - [849] = {.lex_state = 48}, - [850] = {.lex_state = 47}, - [851] = {.lex_state = 47}, - [852] = {.lex_state = 48}, - [853] = {.lex_state = 53}, + [815] = {.lex_state = 49}, + [816] = {.lex_state = 49}, + [817] = {.lex_state = 49}, + [818] = {.lex_state = 49}, + [819] = {.lex_state = 49}, + [820] = {.lex_state = 49}, + [821] = {.lex_state = 49}, + [822] = {.lex_state = 49}, + [823] = {.lex_state = 49}, + [824] = {.lex_state = 49}, + [825] = {.lex_state = 49}, + [826] = {.lex_state = 49}, + [827] = {.lex_state = 49}, + [828] = {.lex_state = 49}, + [829] = {.lex_state = 49}, + [830] = {.lex_state = 49}, + [831] = {.lex_state = 49}, + [832] = {.lex_state = 49}, + [833] = {.lex_state = 49}, + [834] = {.lex_state = 49}, + [835] = {.lex_state = 49}, + [836] = {.lex_state = 49}, + [837] = {.lex_state = 49}, + [838] = {.lex_state = 49}, + [839] = {.lex_state = 49}, + [840] = {.lex_state = 49}, + [841] = {.lex_state = 49}, + [842] = {.lex_state = 49}, + [843] = {.lex_state = 49}, + [844] = {.lex_state = 49}, + [845] = {.lex_state = 49}, + [846] = {.lex_state = 49}, + [847] = {.lex_state = 49}, + [848] = {.lex_state = 49}, + [849] = {.lex_state = 49}, + [850] = {.lex_state = 49}, + [851] = {.lex_state = 49}, + [852] = {.lex_state = 49}, + [853] = {.lex_state = 49}, [854] = {.lex_state = 49}, - [855] = {.lex_state = 47}, + [855] = {.lex_state = 49}, [856] = {.lex_state = 49}, - [857] = {.lex_state = 48}, + [857] = {.lex_state = 49}, [858] = {.lex_state = 49}, - [859] = {.lex_state = 48}, + [859] = {.lex_state = 49}, [860] = {.lex_state = 49}, [861] = {.lex_state = 49}, - [862] = {.lex_state = 48}, - [863] = {.lex_state = 47}, - [864] = {.lex_state = 47}, - [865] = {.lex_state = 47}, - [866] = {.lex_state = 48}, - [867] = {.lex_state = 48}, - [868] = {.lex_state = 53}, + [862] = {.lex_state = 49}, + [863] = {.lex_state = 49}, + [864] = {.lex_state = 49}, + [865] = {.lex_state = 49}, + [866] = {.lex_state = 49}, + [867] = {.lex_state = 49}, + [868] = {.lex_state = 49}, [869] = {.lex_state = 49}, [870] = {.lex_state = 49}, [871] = {.lex_state = 49}, - [872] = {.lex_state = 53}, - [873] = {.lex_state = 53}, - [874] = {.lex_state = 49}, - [875] = {.lex_state = 53}, + [872] = {.lex_state = 49}, + [873] = {.lex_state = 50}, + [874] = {.lex_state = 50}, + [875] = {.lex_state = 50}, [876] = {.lex_state = 49}, - [877] = {.lex_state = 53}, - [878] = {.lex_state = 49}, - [879] = {.lex_state = 49}, - [880] = {.lex_state = 47}, - [881] = {.lex_state = 53}, - [882] = {.lex_state = 49}, - [883] = {.lex_state = 49}, - [884] = {.lex_state = 53}, - [885] = {.lex_state = 49}, - [886] = {.lex_state = 49}, - [887] = {.lex_state = 49}, - [888] = {.lex_state = 48}, - [889] = {.lex_state = 48}, - [890] = {.lex_state = 53}, - [891] = {.lex_state = 47}, - [892] = {.lex_state = 47}, - [893] = {.lex_state = 48}, - [894] = {.lex_state = 49}, - [895] = {.lex_state = 48}, + [877] = {.lex_state = 49}, + [878] = {.lex_state = 50}, + [879] = {.lex_state = 50}, + [880] = {.lex_state = 50}, + [881] = {.lex_state = 50}, + [882] = {.lex_state = 50}, + [883] = {.lex_state = 50}, + [884] = {.lex_state = 50}, + [885] = {.lex_state = 50}, + [886] = {.lex_state = 50}, + [887] = {.lex_state = 50}, + [888] = {.lex_state = 50}, + [889] = {.lex_state = 50}, + [890] = {.lex_state = 50}, + [891] = {.lex_state = 50}, + [892] = {.lex_state = 50}, + [893] = {.lex_state = 47}, + [894] = {.lex_state = 47}, + [895] = {.lex_state = 47}, [896] = {.lex_state = 47}, - [897] = {.lex_state = 53}, - [898] = {.lex_state = 53}, - [899] = {.lex_state = 48}, - [900] = {.lex_state = 48}, - [901] = {.lex_state = 48}, - [902] = {.lex_state = 53}, - [903] = {.lex_state = 48}, - [904] = {.lex_state = 53}, + [897] = {.lex_state = 47}, + [898] = {.lex_state = 47}, + [899] = {.lex_state = 47}, + [900] = {.lex_state = 47}, + [901] = {.lex_state = 47}, + [902] = {.lex_state = 47}, + [903] = {.lex_state = 49}, + [904] = {.lex_state = 49}, [905] = {.lex_state = 47}, - [906] = {.lex_state = 53}, + [906] = {.lex_state = 47}, [907] = {.lex_state = 47}, - [908] = {.lex_state = 53}, - [909] = {.lex_state = 48}, - [910] = {.lex_state = 53}, - [911] = {.lex_state = 48}, - [912] = {.lex_state = 53}, - [913] = {.lex_state = 53}, + [908] = {.lex_state = 47}, + [909] = {.lex_state = 47}, + [910] = {.lex_state = 47}, + [911] = {.lex_state = 47}, + [912] = {.lex_state = 47}, + [913] = {.lex_state = 49}, [914] = {.lex_state = 48}, - [915] = {.lex_state = 48}, - [916] = {.lex_state = 48}, + [915] = {.lex_state = 49}, + [916] = {.lex_state = 47}, [917] = {.lex_state = 48}, [918] = {.lex_state = 48}, [919] = {.lex_state = 48}, [920] = {.lex_state = 48}, - [921] = {.lex_state = 48}, - [922] = {.lex_state = 48}, + [921] = {.lex_state = 49}, + [922] = {.lex_state = 49}, [923] = {.lex_state = 48}, - [924] = {.lex_state = 48}, - [925] = {.lex_state = 48}, + [924] = {.lex_state = 49}, + [925] = {.lex_state = 47}, [926] = {.lex_state = 48}, - [927] = {.lex_state = 110}, + [927] = {.lex_state = 53}, [928] = {.lex_state = 48}, - [929] = {.lex_state = 48}, - [930] = {.lex_state = 48}, - [931] = {.lex_state = 48}, + [929] = {.lex_state = 47}, + [930] = {.lex_state = 47}, + [931] = {.lex_state = 47}, [932] = {.lex_state = 48}, - [933] = {.lex_state = 48}, - [934] = {.lex_state = 48}, - [935] = {.lex_state = 48}, + [933] = {.lex_state = 53}, + [934] = {.lex_state = 53}, + [935] = {.lex_state = 53}, [936] = {.lex_state = 48}, - [937] = {.lex_state = 48}, + [937] = {.lex_state = 49}, [938] = {.lex_state = 48}, - [939] = {.lex_state = 48}, - [940] = {.lex_state = 48}, - [941] = {.lex_state = 48}, - [942] = {.lex_state = 48}, + [939] = {.lex_state = 47}, + [940] = {.lex_state = 49}, + [941] = {.lex_state = 49}, + [942] = {.lex_state = 49}, [943] = {.lex_state = 48}, - [944] = {.lex_state = 48}, - [945] = {.lex_state = 48}, - [946] = {.lex_state = 48}, - [947] = {.lex_state = 48}, - [948] = {.lex_state = 48}, + [944] = {.lex_state = 49}, + [945] = {.lex_state = 53}, + [946] = {.lex_state = 49}, + [947] = {.lex_state = 47}, + [948] = {.lex_state = 53}, [949] = {.lex_state = 48}, - [950] = {.lex_state = 48}, + [950] = {.lex_state = 53}, [951] = {.lex_state = 48}, - [952] = {.lex_state = 48}, - [953] = {.lex_state = 48}, - [954] = {.lex_state = 48}, - [955] = {.lex_state = 48}, - [956] = {.lex_state = 48}, - [957] = {.lex_state = 48}, + [952] = {.lex_state = 53}, + [953] = {.lex_state = 49}, + [954] = {.lex_state = 53}, + [955] = {.lex_state = 53}, + [956] = {.lex_state = 53}, + [957] = {.lex_state = 53}, [958] = {.lex_state = 48}, - [959] = {.lex_state = 48}, - [960] = {.lex_state = 48}, - [961] = {.lex_state = 48}, - [962] = {.lex_state = 50}, - [963] = {.lex_state = 48}, - [964] = {.lex_state = 48}, - [965] = {.lex_state = 48}, - [966] = {.lex_state = 50}, - [967] = {.lex_state = 50}, - [968] = {.lex_state = 50}, - [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 = 48}, - [977] = {.lex_state = 48}, - [978] = {.lex_state = 50}, - [979] = {.lex_state = 48}, - [980] = {.lex_state = 48}, - [981] = {.lex_state = 48}, - [982] = {.lex_state = 48}, - [983] = {.lex_state = 48}, - [984] = {.lex_state = 48}, - [985] = {.lex_state = 48}, - [986] = {.lex_state = 48}, - [987] = {.lex_state = 48}, - [988] = {.lex_state = 48}, - [989] = {.lex_state = 48}, - [990] = {.lex_state = 48}, - [991] = {.lex_state = 48}, - [992] = {.lex_state = 48}, - [993] = {.lex_state = 47}, - [994] = {.lex_state = 47}, - [995] = {.lex_state = 47}, - [996] = {.lex_state = 47}, - [997] = {.lex_state = 47}, - [998] = {.lex_state = 48}, - [999] = {.lex_state = 50}, - [1000] = {.lex_state = 47}, - [1001] = {.lex_state = 48}, - [1002] = {.lex_state = 47}, - [1003] = {.lex_state = 48}, - [1004] = {.lex_state = 47}, - [1005] = {.lex_state = 47}, - [1006] = {.lex_state = 47}, - [1007] = {.lex_state = 48}, - [1008] = {.lex_state = 47}, - [1009] = {.lex_state = 47}, - [1010] = {.lex_state = 48}, - [1011] = {.lex_state = 48}, - [1012] = {.lex_state = 47}, - [1013] = {.lex_state = 47}, + [959] = {.lex_state = 47}, + [960] = {.lex_state = 53}, + [961] = {.lex_state = 53}, + [962] = {.lex_state = 53}, + [963] = {.lex_state = 47}, + [964] = {.lex_state = 53}, + [965] = {.lex_state = 49}, + [966] = {.lex_state = 49}, + [967] = {.lex_state = 47}, + [968] = {.lex_state = 48}, + [969] = {.lex_state = 49}, + [970] = {.lex_state = 53}, + [971] = {.lex_state = 53}, + [972] = {.lex_state = 48}, + [973] = {.lex_state = 49}, + [974] = {.lex_state = 48}, + [975] = {.lex_state = 49}, + [976] = {.lex_state = 110}, + [977] = {.lex_state = 49}, + [978] = {.lex_state = 49}, + [979] = {.lex_state = 49}, + [980] = {.lex_state = 49}, + [981] = {.lex_state = 49}, + [982] = {.lex_state = 49}, + [983] = {.lex_state = 49}, + [984] = {.lex_state = 50}, + [985] = {.lex_state = 50}, + [986] = {.lex_state = 49}, + [987] = {.lex_state = 49}, + [988] = {.lex_state = 49}, + [989] = {.lex_state = 49}, + [990] = {.lex_state = 50}, + [991] = {.lex_state = 49}, + [992] = {.lex_state = 49}, + [993] = {.lex_state = 49}, + [994] = {.lex_state = 49}, + [995] = {.lex_state = 49}, + [996] = {.lex_state = 50}, + [997] = {.lex_state = 49}, + [998] = {.lex_state = 49}, + [999] = {.lex_state = 49}, + [1000] = {.lex_state = 49}, + [1001] = {.lex_state = 50}, + [1002] = {.lex_state = 50}, + [1003] = {.lex_state = 50}, + [1004] = {.lex_state = 50}, + [1005] = {.lex_state = 50}, + [1006] = {.lex_state = 50}, + [1007] = {.lex_state = 50}, + [1008] = {.lex_state = 50}, + [1009] = {.lex_state = 49}, + [1010] = {.lex_state = 49}, + [1011] = {.lex_state = 49}, + [1012] = {.lex_state = 49}, + [1013] = {.lex_state = 49}, [1014] = {.lex_state = 47}, [1015] = {.lex_state = 47}, - [1016] = {.lex_state = 47}, - [1017] = {.lex_state = 47}, - [1018] = {.lex_state = 47}, - [1019] = {.lex_state = 47}, - [1020] = {.lex_state = 48}, - [1021] = {.lex_state = 48}, + [1016] = {.lex_state = 49}, + [1017] = {.lex_state = 49}, + [1018] = {.lex_state = 49}, + [1019] = {.lex_state = 49}, + [1020] = {.lex_state = 49}, + [1021] = {.lex_state = 47}, [1022] = {.lex_state = 47}, - [1023] = {.lex_state = 48}, - [1024] = {.lex_state = 47}, - [1025] = {.lex_state = 47}, + [1023] = {.lex_state = 49}, + [1024] = {.lex_state = 49}, + [1025] = {.lex_state = 49}, [1026] = {.lex_state = 47}, - [1027] = {.lex_state = 47}, + [1027] = {.lex_state = 50}, [1028] = {.lex_state = 47}, - [1029] = {.lex_state = 48}, - [1030] = {.lex_state = 48}, - [1031] = {.lex_state = 48}, + [1029] = {.lex_state = 47}, + [1030] = {.lex_state = 47}, + [1031] = {.lex_state = 47}, [1032] = {.lex_state = 47}, - [1033] = {.lex_state = 48}, - [1034] = {.lex_state = 48}, - [1035] = {.lex_state = 48}, - [1036] = {.lex_state = 48}, + [1033] = {.lex_state = 47}, + [1034] = {.lex_state = 49}, + [1035] = {.lex_state = 47}, + [1036] = {.lex_state = 47}, [1037] = {.lex_state = 47}, - [1038] = {.lex_state = 48}, - [1039] = {.lex_state = 47}, + [1038] = {.lex_state = 49}, + [1039] = {.lex_state = 49}, [1040] = {.lex_state = 47}, [1041] = {.lex_state = 47}, - [1042] = {.lex_state = 47}, - [1043] = {.lex_state = 47}, + [1042] = {.lex_state = 49}, + [1043] = {.lex_state = 49}, [1044] = {.lex_state = 47}, [1045] = {.lex_state = 47}, [1046] = {.lex_state = 47}, @@ -13518,35 +13587,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1049] = {.lex_state = 47}, [1050] = {.lex_state = 47}, [1051] = {.lex_state = 47}, - [1052] = {.lex_state = 47}, - [1053] = {.lex_state = 47}, + [1052] = {.lex_state = 49}, + [1053] = {.lex_state = 49}, [1054] = {.lex_state = 47}, [1055] = {.lex_state = 47}, [1056] = {.lex_state = 47}, - [1057] = {.lex_state = 48}, - [1058] = {.lex_state = 48}, - [1059] = {.lex_state = 47}, - [1060] = {.lex_state = 47}, - [1061] = {.lex_state = 47}, + [1057] = {.lex_state = 47}, + [1058] = {.lex_state = 49}, + [1059] = {.lex_state = 49}, + [1060] = {.lex_state = 49}, + [1061] = {.lex_state = 49}, [1062] = {.lex_state = 47}, [1063] = {.lex_state = 47}, - [1064] = {.lex_state = 48}, - [1065] = {.lex_state = 47}, - [1066] = {.lex_state = 48}, + [1064] = {.lex_state = 47}, + [1065] = {.lex_state = 49}, + [1066] = {.lex_state = 47}, [1067] = {.lex_state = 47}, - [1068] = {.lex_state = 47}, - [1069] = {.lex_state = 47}, + [1068] = {.lex_state = 49}, + [1069] = {.lex_state = 49}, [1070] = {.lex_state = 47}, - [1071] = {.lex_state = 48}, - [1072] = {.lex_state = 47}, + [1071] = {.lex_state = 47}, + [1072] = {.lex_state = 49}, [1073] = {.lex_state = 47}, - [1074] = {.lex_state = 47}, + [1074] = {.lex_state = 49}, [1075] = {.lex_state = 47}, [1076] = {.lex_state = 47}, [1077] = {.lex_state = 47}, - [1078] = {.lex_state = 48}, + [1078] = {.lex_state = 47}, [1079] = {.lex_state = 47}, - [1080] = {.lex_state = 48}, + [1080] = {.lex_state = 47}, [1081] = {.lex_state = 47}, [1082] = {.lex_state = 47}, [1083] = {.lex_state = 47}, @@ -13554,797 +13623,815 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1085] = {.lex_state = 47}, [1086] = {.lex_state = 47}, [1087] = {.lex_state = 47}, - [1088] = {.lex_state = 47}, + [1088] = {.lex_state = 49}, [1089] = {.lex_state = 47}, [1090] = {.lex_state = 47}, - [1091] = {.lex_state = 48}, + [1091] = {.lex_state = 47}, [1092] = {.lex_state = 47}, [1093] = {.lex_state = 47}, - [1094] = {.lex_state = 48}, - [1095] = {.lex_state = 48}, - [1096] = {.lex_state = 48}, - [1097] = {.lex_state = 48}, - [1098] = {.lex_state = 48}, - [1099] = {.lex_state = 48}, - [1100] = {.lex_state = 48}, - [1101] = {.lex_state = 48}, - [1102] = {.lex_state = 48}, - [1103] = {.lex_state = 48}, - [1104] = {.lex_state = 48}, - [1105] = {.lex_state = 48}, - [1106] = {.lex_state = 48}, - [1107] = {.lex_state = 48}, - [1108] = {.lex_state = 48}, - [1109] = {.lex_state = 48}, - [1110] = {.lex_state = 48}, - [1111] = {.lex_state = 48}, - [1112] = {.lex_state = 48}, - [1113] = {.lex_state = 48}, - [1114] = {.lex_state = 48}, - [1115] = {.lex_state = 46}, - [1116] = {.lex_state = 48}, - [1117] = {.lex_state = 48}, - [1118] = {.lex_state = 46}, - [1119] = {.lex_state = 46}, - [1120] = {.lex_state = 48}, - [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 48}, - [1123] = {.lex_state = 46}, - [1124] = {.lex_state = 46}, - [1125] = {.lex_state = 46}, - [1126] = {.lex_state = 46}, - [1127] = {.lex_state = 46}, - [1128] = {.lex_state = 46}, - [1129] = {.lex_state = 46}, - [1130] = {.lex_state = 46}, - [1131] = {.lex_state = 46}, - [1132] = {.lex_state = 46}, - [1133] = {.lex_state = 46}, - [1134] = {.lex_state = 48}, - [1135] = {.lex_state = 48}, - [1136] = {.lex_state = 48}, - [1137] = {.lex_state = 46}, - [1138] = {.lex_state = 46}, - [1139] = {.lex_state = 46}, - [1140] = {.lex_state = 46}, - [1141] = {.lex_state = 46}, - [1142] = {.lex_state = 46}, - [1143] = {.lex_state = 46}, - [1144] = {.lex_state = 46}, - [1145] = {.lex_state = 46}, + [1094] = {.lex_state = 47}, + [1095] = {.lex_state = 47}, + [1096] = {.lex_state = 47}, + [1097] = {.lex_state = 47}, + [1098] = {.lex_state = 47}, + [1099] = {.lex_state = 47}, + [1100] = {.lex_state = 47}, + [1101] = {.lex_state = 47}, + [1102] = {.lex_state = 47}, + [1103] = {.lex_state = 47}, + [1104] = {.lex_state = 47}, + [1105] = {.lex_state = 47}, + [1106] = {.lex_state = 49}, + [1107] = {.lex_state = 47}, + [1108] = {.lex_state = 47}, + [1109] = {.lex_state = 47}, + [1110] = {.lex_state = 47}, + [1111] = {.lex_state = 49}, + [1112] = {.lex_state = 47}, + [1113] = {.lex_state = 47}, + [1114] = {.lex_state = 47}, + [1115] = {.lex_state = 49}, + [1116] = {.lex_state = 49}, + [1117] = {.lex_state = 49}, + [1118] = {.lex_state = 49}, + [1119] = {.lex_state = 47}, + [1120] = {.lex_state = 47}, + [1121] = {.lex_state = 49}, + [1122] = {.lex_state = 49}, + [1123] = {.lex_state = 49}, + [1124] = {.lex_state = 49}, + [1125] = {.lex_state = 49}, + [1126] = {.lex_state = 49}, + [1127] = {.lex_state = 49}, + [1128] = {.lex_state = 49}, + [1129] = {.lex_state = 49}, + [1130] = {.lex_state = 49}, + [1131] = {.lex_state = 49}, + [1132] = {.lex_state = 49}, + [1133] = {.lex_state = 49}, + [1134] = {.lex_state = 49}, + [1135] = {.lex_state = 49}, + [1136] = {.lex_state = 49}, + [1137] = {.lex_state = 49}, + [1138] = {.lex_state = 49}, + [1139] = {.lex_state = 49}, + [1140] = {.lex_state = 49}, + [1141] = {.lex_state = 49}, + [1142] = {.lex_state = 49}, + [1143] = {.lex_state = 49}, + [1144] = {.lex_state = 49}, + [1145] = {.lex_state = 49}, [1146] = {.lex_state = 46}, - [1147] = {.lex_state = 46}, - [1148] = {.lex_state = 48}, - [1149] = {.lex_state = 48}, - [1150] = {.lex_state = 46}, - [1151] = {.lex_state = 48}, - [1152] = {.lex_state = 48}, - [1153] = {.lex_state = 48}, - [1154] = {.lex_state = 48}, - [1155] = {.lex_state = 48}, - [1156] = {.lex_state = 48}, - [1157] = {.lex_state = 48}, - [1158] = {.lex_state = 48}, - [1159] = {.lex_state = 48}, - [1160] = {.lex_state = 48}, - [1161] = {.lex_state = 48}, + [1147] = {.lex_state = 49}, + [1148] = {.lex_state = 49}, + [1149] = {.lex_state = 49}, + [1150] = {.lex_state = 49}, + [1151] = {.lex_state = 49}, + [1152] = {.lex_state = 23}, + [1153] = {.lex_state = 49}, + [1154] = {.lex_state = 46}, + [1155] = {.lex_state = 46}, + [1156] = {.lex_state = 49}, + [1157] = {.lex_state = 49}, + [1158] = {.lex_state = 46}, + [1159] = {.lex_state = 46}, + [1160] = {.lex_state = 49}, + [1161] = {.lex_state = 46}, [1162] = {.lex_state = 46}, [1163] = {.lex_state = 46}, - [1164] = {.lex_state = 48}, - [1165] = {.lex_state = 48}, - [1166] = {.lex_state = 48}, - [1167] = {.lex_state = 46}, - [1168] = {.lex_state = 46}, - [1169] = {.lex_state = 48}, + [1164] = {.lex_state = 46}, + [1165] = {.lex_state = 46}, + [1166] = {.lex_state = 46}, + [1167] = {.lex_state = 49}, + [1168] = {.lex_state = 49}, + [1169] = {.lex_state = 46}, [1170] = {.lex_state = 46}, - [1171] = {.lex_state = 48}, - [1172] = {.lex_state = 48}, + [1171] = {.lex_state = 46}, + [1172] = {.lex_state = 46}, [1173] = {.lex_state = 46}, [1174] = {.lex_state = 46}, [1175] = {.lex_state = 46}, - [1176] = {.lex_state = 46}, - [1177] = {.lex_state = 46}, + [1176] = {.lex_state = 49}, + [1177] = {.lex_state = 49}, [1178] = {.lex_state = 46}, - [1179] = {.lex_state = 46}, - [1180] = {.lex_state = 46}, - [1181] = {.lex_state = 48}, - [1182] = {.lex_state = 48}, - [1183] = {.lex_state = 23}, - [1184] = {.lex_state = 23}, - [1185] = {.lex_state = 23}, - [1186] = {.lex_state = 23}, - [1187] = {.lex_state = 23}, - [1188] = {.lex_state = 23}, - [1189] = {.lex_state = 23}, - [1190] = {.lex_state = 48}, - [1191] = {.lex_state = 23}, - [1192] = {.lex_state = 23}, - [1193] = {.lex_state = 23}, - [1194] = {.lex_state = 23}, - [1195] = {.lex_state = 23}, - [1196] = {.lex_state = 23}, - [1197] = {.lex_state = 23}, - [1198] = {.lex_state = 23}, - [1199] = {.lex_state = 23}, - [1200] = {.lex_state = 23}, - [1201] = {.lex_state = 23}, - [1202] = {.lex_state = 48}, - [1203] = {.lex_state = 23}, - [1204] = {.lex_state = 23}, - [1205] = {.lex_state = 23}, - [1206] = {.lex_state = 23}, - [1207] = {.lex_state = 23}, - [1208] = {.lex_state = 23}, - [1209] = {.lex_state = 48}, - [1210] = {.lex_state = 23}, - [1211] = {.lex_state = 23}, - [1212] = {.lex_state = 23}, - [1213] = {.lex_state = 23}, - [1214] = {.lex_state = 23}, - [1215] = {.lex_state = 23}, - [1216] = {.lex_state = 48}, - [1217] = {.lex_state = 48}, - [1218] = {.lex_state = 48}, - [1219] = {.lex_state = 48}, - [1220] = {.lex_state = 48}, - [1221] = {.lex_state = 48}, - [1222] = {.lex_state = 48}, - [1223] = {.lex_state = 48}, - [1224] = {.lex_state = 48}, - [1225] = {.lex_state = 48}, - [1226] = {.lex_state = 48}, - [1227] = {.lex_state = 48}, - [1228] = {.lex_state = 48}, - [1229] = {.lex_state = 48}, - [1230] = {.lex_state = 48}, - [1231] = {.lex_state = 48}, - [1232] = {.lex_state = 48}, - [1233] = {.lex_state = 48}, - [1234] = {.lex_state = 48}, - [1235] = {.lex_state = 48}, - [1236] = {.lex_state = 48}, - [1237] = {.lex_state = 48}, - [1238] = {.lex_state = 48}, - [1239] = {.lex_state = 48}, - [1240] = {.lex_state = 48}, - [1241] = {.lex_state = 48}, - [1242] = {.lex_state = 48}, - [1243] = {.lex_state = 48}, - [1244] = {.lex_state = 48}, - [1245] = {.lex_state = 48}, - [1246] = {.lex_state = 48}, - [1247] = {.lex_state = 48}, - [1248] = {.lex_state = 48}, - [1249] = {.lex_state = 48}, - [1250] = {.lex_state = 48}, - [1251] = {.lex_state = 48}, - [1252] = {.lex_state = 48}, - [1253] = {.lex_state = 48}, - [1254] = {.lex_state = 48}, - [1255] = {.lex_state = 48}, - [1256] = {.lex_state = 48}, - [1257] = {.lex_state = 48}, - [1258] = {.lex_state = 48}, - [1259] = {.lex_state = 48}, - [1260] = {.lex_state = 48}, - [1261] = {.lex_state = 48}, - [1262] = {.lex_state = 48}, - [1263] = {.lex_state = 48}, - [1264] = {.lex_state = 48}, - [1265] = {.lex_state = 48}, - [1266] = {.lex_state = 48}, - [1267] = {.lex_state = 48}, - [1268] = {.lex_state = 48}, - [1269] = {.lex_state = 48}, - [1270] = {.lex_state = 48}, - [1271] = {.lex_state = 48}, - [1272] = {.lex_state = 48}, - [1273] = {.lex_state = 48}, - [1274] = {.lex_state = 48}, - [1275] = {.lex_state = 48}, - [1276] = {.lex_state = 48}, - [1277] = {.lex_state = 48}, - [1278] = {.lex_state = 48}, - [1279] = {.lex_state = 48}, - [1280] = {.lex_state = 48}, - [1281] = {.lex_state = 48}, - [1282] = {.lex_state = 48}, - [1283] = {.lex_state = 48}, - [1284] = {.lex_state = 48}, - [1285] = {.lex_state = 48}, - [1286] = {.lex_state = 48}, - [1287] = {.lex_state = 48}, - [1288] = {.lex_state = 48}, - [1289] = {.lex_state = 48}, - [1290] = {.lex_state = 48}, - [1291] = {.lex_state = 48}, - [1292] = {.lex_state = 48}, - [1293] = {.lex_state = 48}, - [1294] = {.lex_state = 48}, - [1295] = {.lex_state = 48}, - [1296] = {.lex_state = 48}, - [1297] = {.lex_state = 48}, - [1298] = {.lex_state = 48}, - [1299] = {.lex_state = 48}, - [1300] = {.lex_state = 48}, - [1301] = {.lex_state = 48}, - [1302] = {.lex_state = 48}, - [1303] = {.lex_state = 48}, - [1304] = {.lex_state = 48}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 48}, - [1307] = {.lex_state = 48}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 48}, - [1310] = {.lex_state = 110}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 48}, - [1313] = {.lex_state = 110}, - [1314] = {.lex_state = 110}, + [1179] = {.lex_state = 49}, + [1180] = {.lex_state = 49}, + [1181] = {.lex_state = 49}, + [1182] = {.lex_state = 49}, + [1183] = {.lex_state = 46}, + [1184] = {.lex_state = 49}, + [1185] = {.lex_state = 49}, + [1186] = {.lex_state = 49}, + [1187] = {.lex_state = 49}, + [1188] = {.lex_state = 49}, + [1189] = {.lex_state = 49}, + [1190] = {.lex_state = 46}, + [1191] = {.lex_state = 49}, + [1192] = {.lex_state = 49}, + [1193] = {.lex_state = 49}, + [1194] = {.lex_state = 49}, + [1195] = {.lex_state = 46}, + [1196] = {.lex_state = 46}, + [1197] = {.lex_state = 46}, + [1198] = {.lex_state = 46}, + [1199] = {.lex_state = 46}, + [1200] = {.lex_state = 46}, + [1201] = {.lex_state = 46}, + [1202] = {.lex_state = 49}, + [1203] = {.lex_state = 49}, + [1204] = {.lex_state = 49}, + [1205] = {.lex_state = 49}, + [1206] = {.lex_state = 46}, + [1207] = {.lex_state = 46}, + [1208] = {.lex_state = 46}, + [1209] = {.lex_state = 46}, + [1210] = {.lex_state = 46}, + [1211] = {.lex_state = 46}, + [1212] = {.lex_state = 46}, + [1213] = {.lex_state = 46}, + [1214] = {.lex_state = 49}, + [1215] = {.lex_state = 49}, + [1216] = {.lex_state = 49}, + [1217] = {.lex_state = 46}, + [1218] = {.lex_state = 49}, + [1219] = {.lex_state = 49}, + [1220] = {.lex_state = 49}, + [1221] = {.lex_state = 46}, + [1222] = {.lex_state = 46}, + [1223] = {.lex_state = 49}, + [1224] = {.lex_state = 49}, + [1225] = {.lex_state = 49}, + [1226] = {.lex_state = 23}, + [1227] = {.lex_state = 23}, + [1228] = {.lex_state = 23}, + [1229] = {.lex_state = 23}, + [1230] = {.lex_state = 49}, + [1231] = {.lex_state = 49}, + [1232] = {.lex_state = 23}, + [1233] = {.lex_state = 23}, + [1234] = {.lex_state = 23}, + [1235] = {.lex_state = 23}, + [1236] = {.lex_state = 49}, + [1237] = {.lex_state = 49}, + [1238] = {.lex_state = 23}, + [1239] = {.lex_state = 49}, + [1240] = {.lex_state = 23}, + [1241] = {.lex_state = 23}, + [1242] = {.lex_state = 23}, + [1243] = {.lex_state = 23}, + [1244] = {.lex_state = 49}, + [1245] = {.lex_state = 23}, + [1246] = {.lex_state = 23}, + [1247] = {.lex_state = 23}, + [1248] = {.lex_state = 23}, + [1249] = {.lex_state = 23}, + [1250] = {.lex_state = 23}, + [1251] = {.lex_state = 23}, + [1252] = {.lex_state = 49}, + [1253] = {.lex_state = 23}, + [1254] = {.lex_state = 49}, + [1255] = {.lex_state = 23}, + [1256] = {.lex_state = 23}, + [1257] = {.lex_state = 23}, + [1258] = {.lex_state = 23}, + [1259] = {.lex_state = 23}, + [1260] = {.lex_state = 23}, + [1261] = {.lex_state = 23}, + [1262] = {.lex_state = 23}, + [1263] = {.lex_state = 23}, + [1264] = {.lex_state = 49}, + [1265] = {.lex_state = 49}, + [1266] = {.lex_state = 49}, + [1267] = {.lex_state = 49}, + [1268] = {.lex_state = 49}, + [1269] = {.lex_state = 49}, + [1270] = {.lex_state = 49}, + [1271] = {.lex_state = 49}, + [1272] = {.lex_state = 49}, + [1273] = {.lex_state = 49}, + [1274] = {.lex_state = 49}, + [1275] = {.lex_state = 49}, + [1276] = {.lex_state = 49}, + [1277] = {.lex_state = 49}, + [1278] = {.lex_state = 49}, + [1279] = {.lex_state = 49}, + [1280] = {.lex_state = 49}, + [1281] = {.lex_state = 49}, + [1282] = {.lex_state = 49}, + [1283] = {.lex_state = 49}, + [1284] = {.lex_state = 49}, + [1285] = {.lex_state = 49}, + [1286] = {.lex_state = 49}, + [1287] = {.lex_state = 49}, + [1288] = {.lex_state = 49}, + [1289] = {.lex_state = 49}, + [1290] = {.lex_state = 49}, + [1291] = {.lex_state = 49}, + [1292] = {.lex_state = 49}, + [1293] = {.lex_state = 49}, + [1294] = {.lex_state = 49}, + [1295] = {.lex_state = 49}, + [1296] = {.lex_state = 49}, + [1297] = {.lex_state = 49}, + [1298] = {.lex_state = 49}, + [1299] = {.lex_state = 49}, + [1300] = {.lex_state = 49}, + [1301] = {.lex_state = 49}, + [1302] = {.lex_state = 49}, + [1303] = {.lex_state = 49}, + [1304] = {.lex_state = 49}, + [1305] = {.lex_state = 49}, + [1306] = {.lex_state = 49}, + [1307] = {.lex_state = 49}, + [1308] = {.lex_state = 49}, + [1309] = {.lex_state = 49}, + [1310] = {.lex_state = 49}, + [1311] = {.lex_state = 49}, + [1312] = {.lex_state = 49}, + [1313] = {.lex_state = 49}, + [1314] = {.lex_state = 0}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 52}, - [1317] = {.lex_state = 110}, - [1318] = {.lex_state = 52}, - [1319] = {.lex_state = 52}, - [1320] = {.lex_state = 52}, - [1321] = {.lex_state = 48}, - [1322] = {.lex_state = 110}, - [1323] = {.lex_state = 52}, - [1324] = {.lex_state = 110}, - [1325] = {.lex_state = 0}, + [1316] = {.lex_state = 49}, + [1317] = {.lex_state = 49}, + [1318] = {.lex_state = 49}, + [1319] = {.lex_state = 49}, + [1320] = {.lex_state = 49}, + [1321] = {.lex_state = 49}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 49}, + [1324] = {.lex_state = 52}, + [1325] = {.lex_state = 49}, [1326] = {.lex_state = 110}, - [1327] = {.lex_state = 110}, - [1328] = {.lex_state = 47}, - [1329] = {.lex_state = 48}, - [1330] = {.lex_state = 48}, - [1331] = {.lex_state = 48}, - [1332] = {.lex_state = 48}, - [1333] = {.lex_state = 48}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 48}, - [1336] = {.lex_state = 110}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 110}, - [1339] = {.lex_state = 110}, - [1340] = {.lex_state = 48}, - [1341] = {.lex_state = 47}, - [1342] = {.lex_state = 48}, - [1343] = {.lex_state = 48}, - [1344] = {.lex_state = 48}, - [1345] = {.lex_state = 48}, - [1346] = {.lex_state = 110}, - [1347] = {.lex_state = 48}, - [1348] = {.lex_state = 110}, - [1349] = {.lex_state = 48}, - [1350] = {.lex_state = 48}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 52}, + [1329] = {.lex_state = 110}, + [1330] = {.lex_state = 52}, + [1331] = {.lex_state = 52}, + [1332] = {.lex_state = 110}, + [1333] = {.lex_state = 52}, + [1334] = {.lex_state = 110}, + [1335] = {.lex_state = 110}, + [1336] = {.lex_state = 49}, + [1337] = {.lex_state = 49}, + [1338] = {.lex_state = 47}, + [1339] = {.lex_state = 49}, + [1340] = {.lex_state = 110}, + [1341] = {.lex_state = 49}, + [1342] = {.lex_state = 47}, + [1343] = {.lex_state = 49}, + [1344] = {.lex_state = 110}, + [1345] = {.lex_state = 49}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 110}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 110}, + [1350] = {.lex_state = 110}, [1351] = {.lex_state = 110}, - [1352] = {.lex_state = 48}, - [1353] = {.lex_state = 48}, - [1354] = {.lex_state = 48}, - [1355] = {.lex_state = 48}, - [1356] = {.lex_state = 110}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 48}, - [1359] = {.lex_state = 110}, - [1360] = {.lex_state = 48}, - [1361] = {.lex_state = 48}, - [1362] = {.lex_state = 110}, - [1363] = {.lex_state = 0}, + [1352] = {.lex_state = 49}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 49}, + [1355] = {.lex_state = 49}, + [1356] = {.lex_state = 49}, + [1357] = {.lex_state = 49}, + [1358] = {.lex_state = 49}, + [1359] = {.lex_state = 49}, + [1360] = {.lex_state = 49}, + [1361] = {.lex_state = 49}, + [1362] = {.lex_state = 49}, + [1363] = {.lex_state = 49}, [1364] = {.lex_state = 110}, - [1365] = {.lex_state = 110}, - [1366] = {.lex_state = 0}, + [1365] = {.lex_state = 49}, + [1366] = {.lex_state = 110}, [1367] = {.lex_state = 110}, - [1368] = {.lex_state = 110}, - [1369] = {.lex_state = 110}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 110}, + [1368] = {.lex_state = 49}, + [1369] = {.lex_state = 49}, + [1370] = {.lex_state = 49}, + [1371] = {.lex_state = 49}, [1372] = {.lex_state = 110}, - [1373] = {.lex_state = 110}, - [1374] = {.lex_state = 48}, + [1373] = {.lex_state = 49}, + [1374] = {.lex_state = 110}, [1375] = {.lex_state = 110}, [1376] = {.lex_state = 110}, - [1377] = {.lex_state = 110}, - [1378] = {.lex_state = 110}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 49}, [1379] = {.lex_state = 110}, [1380] = {.lex_state = 110}, - [1381] = {.lex_state = 110}, - [1382] = {.lex_state = 110}, - [1383] = {.lex_state = 42}, - [1384] = {.lex_state = 48}, + [1381] = {.lex_state = 49}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 110}, + [1384] = {.lex_state = 0}, [1385] = {.lex_state = 110}, - [1386] = {.lex_state = 110}, - [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 48}, - [1389] = {.lex_state = 26}, - [1390] = {.lex_state = 31}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 26}, - [1393] = {.lex_state = 48}, - [1394] = {.lex_state = 48}, - [1395] = {.lex_state = 48}, - [1396] = {.lex_state = 48}, - [1397] = {.lex_state = 48}, - [1398] = {.lex_state = 48}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 48}, - [1402] = {.lex_state = 48}, - [1403] = {.lex_state = 26}, - [1404] = {.lex_state = 48}, - [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 48}, - [1407] = {.lex_state = 48}, - [1408] = {.lex_state = 26}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 110}, + [1388] = {.lex_state = 110}, + [1389] = {.lex_state = 49}, + [1390] = {.lex_state = 42}, + [1391] = {.lex_state = 110}, + [1392] = {.lex_state = 49}, + [1393] = {.lex_state = 110}, + [1394] = {.lex_state = 110}, + [1395] = {.lex_state = 110}, + [1396] = {.lex_state = 110}, + [1397] = {.lex_state = 110}, + [1398] = {.lex_state = 110}, + [1399] = {.lex_state = 110}, + [1400] = {.lex_state = 110}, + [1401] = {.lex_state = 110}, + [1402] = {.lex_state = 110}, + [1403] = {.lex_state = 49}, + [1404] = {.lex_state = 26}, + [1405] = {.lex_state = 49}, + [1406] = {.lex_state = 49}, + [1407] = {.lex_state = 49}, + [1408] = {.lex_state = 49}, [1409] = {.lex_state = 26}, - [1410] = {.lex_state = 48}, - [1411] = {.lex_state = 26}, - [1412] = {.lex_state = 26}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 48}, - [1415] = {.lex_state = 48}, + [1410] = {.lex_state = 49}, + [1411] = {.lex_state = 49}, + [1412] = {.lex_state = 49}, + [1413] = {.lex_state = 26}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 49}, [1416] = {.lex_state = 42}, - [1417] = {.lex_state = 48}, - [1418] = {.lex_state = 48}, - [1419] = {.lex_state = 48}, - [1420] = {.lex_state = 48}, - [1421] = {.lex_state = 26}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 48}, - [1424] = {.lex_state = 31}, - [1425] = {.lex_state = 31}, - [1426] = {.lex_state = 48}, - [1427] = {.lex_state = 48}, - [1428] = {.lex_state = 48}, - [1429] = {.lex_state = 26}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 48}, - [1432] = {.lex_state = 48}, - [1433] = {.lex_state = 48}, - [1434] = {.lex_state = 48}, - [1435] = {.lex_state = 48}, - [1436] = {.lex_state = 48}, - [1437] = {.lex_state = 48}, - [1438] = {.lex_state = 110}, - [1439] = {.lex_state = 48}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 31}, - [1442] = {.lex_state = 31}, - [1443] = {.lex_state = 31}, - [1444] = {.lex_state = 31}, - [1445] = {.lex_state = 48}, - [1446] = {.lex_state = 48}, - [1447] = {.lex_state = 48}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 48}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 49}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 49}, + [1421] = {.lex_state = 49}, + [1422] = {.lex_state = 28}, + [1423] = {.lex_state = 28}, + [1424] = {.lex_state = 28}, + [1425] = {.lex_state = 28}, + [1426] = {.lex_state = 49}, + [1427] = {.lex_state = 49}, + [1428] = {.lex_state = 49}, + [1429] = {.lex_state = 49}, + [1430] = {.lex_state = 49}, + [1431] = {.lex_state = 110}, + [1432] = {.lex_state = 26}, + [1433] = {.lex_state = 49}, + [1434] = {.lex_state = 49}, + [1435] = {.lex_state = 49}, + [1436] = {.lex_state = 49}, + [1437] = {.lex_state = 49}, + [1438] = {.lex_state = 49}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 28}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 28}, + [1443] = {.lex_state = 28}, + [1444] = {.lex_state = 28}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 26}, + [1448] = {.lex_state = 26}, + [1449] = {.lex_state = 49}, + [1450] = {.lex_state = 28}, [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 48}, - [1453] = {.lex_state = 48}, - [1454] = {.lex_state = 48}, + [1452] = {.lex_state = 49}, + [1453] = {.lex_state = 49}, + [1454] = {.lex_state = 49}, [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 48}, - [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 28}, - [1461] = {.lex_state = 48}, - [1462] = {.lex_state = 0}, + [1456] = {.lex_state = 49}, + [1457] = {.lex_state = 49}, + [1458] = {.lex_state = 49}, + [1459] = {.lex_state = 49}, + [1460] = {.lex_state = 26}, + [1461] = {.lex_state = 49}, + [1462] = {.lex_state = 49}, [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 42}, + [1464] = {.lex_state = 49}, + [1465] = {.lex_state = 0}, [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 0}, + [1467] = {.lex_state = 49}, [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 28}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 48}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, + [1469] = {.lex_state = 30}, + [1470] = {.lex_state = 42}, + [1471] = {.lex_state = 49}, + [1472] = {.lex_state = 42}, + [1473] = {.lex_state = 49}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 49}, + [1476] = {.lex_state = 42}, + [1477] = {.lex_state = 49}, [1478] = {.lex_state = 0}, [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 48}, + [1480] = {.lex_state = 0}, [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, [1483] = {.lex_state = 0}, [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 42}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 42}, - [1488] = {.lex_state = 48}, - [1489] = {.lex_state = 110}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 49}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 42}, + [1489] = {.lex_state = 49}, [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 0}, + [1491] = {.lex_state = 49}, [1492] = {.lex_state = 0}, [1493] = {.lex_state = 0}, [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 48}, + [1495] = {.lex_state = 0}, [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 48}, + [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 28}, - [1501] = {.lex_state = 0}, + [1500] = {.lex_state = 49}, + [1501] = {.lex_state = 42}, [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 48}, - [1504] = {.lex_state = 48}, - [1505] = {.lex_state = 42}, + [1503] = {.lex_state = 49}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 42}, + [1507] = {.lex_state = 49}, + [1508] = {.lex_state = 0}, [1509] = {.lex_state = 0}, [1510] = {.lex_state = 0}, [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 42}, + [1512] = {.lex_state = 30}, [1513] = {.lex_state = 0}, [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 110}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 28}, - [1519] = {.lex_state = 48}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 110}, + [1517] = {.lex_state = 42}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 42}, - [1522] = {.lex_state = 0}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 49}, [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 28}, - [1525] = {.lex_state = 0}, + [1524] = {.lex_state = 110}, + [1525] = {.lex_state = 30}, [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 48}, - [1528] = {.lex_state = 0}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 49}, [1529] = {.lex_state = 0}, [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 110}, - [1532] = {.lex_state = 48}, - [1533] = {.lex_state = 110}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 49}, + [1533] = {.lex_state = 0}, [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 110}, - [1536] = {.lex_state = 27}, - [1537] = {.lex_state = 27}, - [1538] = {.lex_state = 110}, - [1539] = {.lex_state = 110}, - [1540] = {.lex_state = 0}, + [1535] = {.lex_state = 49}, + [1536] = {.lex_state = 30}, + [1537] = {.lex_state = 30}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 42}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 27}, - [1544] = {.lex_state = 48}, - [1545] = {.lex_state = 110}, - [1546] = {.lex_state = 42}, - [1547] = {.lex_state = 110}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 42}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 27}, - [1556] = {.lex_state = 48}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 29}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 29}, + [1549] = {.lex_state = 49}, + [1550] = {.lex_state = 110}, + [1551] = {.lex_state = 110}, + [1552] = {.lex_state = 110}, + [1553] = {.lex_state = 35}, + [1554] = {.lex_state = 29}, + [1555] = {.lex_state = 49}, + [1556] = {.lex_state = 110}, [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 48}, - [1559] = {.lex_state = 110}, - [1560] = {.lex_state = 48}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, + [1558] = {.lex_state = 29}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 49}, + [1562] = {.lex_state = 110}, + [1563] = {.lex_state = 110}, [1564] = {.lex_state = 110}, - [1565] = {.lex_state = 48}, + [1565] = {.lex_state = 29}, [1566] = {.lex_state = 110}, - [1567] = {.lex_state = 110}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 27}, - [1570] = {.lex_state = 48}, - [1571] = {.lex_state = 110}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 110}, + [1569] = {.lex_state = 110}, + [1570] = {.lex_state = 42}, + [1571] = {.lex_state = 0}, [1572] = {.lex_state = 110}, - [1573] = {.lex_state = 35}, + [1573] = {.lex_state = 49}, [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, + [1575] = {.lex_state = 110}, [1576] = {.lex_state = 110}, [1577] = {.lex_state = 110}, - [1578] = {.lex_state = 110}, + [1578] = {.lex_state = 0}, [1579] = {.lex_state = 110}, - [1580] = {.lex_state = 48}, - [1581] = {.lex_state = 27}, + [1580] = {.lex_state = 29}, + [1581] = {.lex_state = 0}, [1582] = {.lex_state = 110}, - [1583] = {.lex_state = 0}, + [1583] = {.lex_state = 110}, [1584] = {.lex_state = 110}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 27}, - [1589] = {.lex_state = 110}, - [1590] = {.lex_state = 35}, - [1591] = {.lex_state = 27}, - [1592] = {.lex_state = 35}, - [1593] = {.lex_state = 27}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 27}, - [1596] = {.lex_state = 27}, - [1597] = {.lex_state = 27}, - [1598] = {.lex_state = 27}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 110}, - [1601] = {.lex_state = 27}, - [1602] = {.lex_state = 110}, - [1603] = {.lex_state = 0}, + [1585] = {.lex_state = 110}, + [1586] = {.lex_state = 110}, + [1587] = {.lex_state = 110}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 35}, + [1590] = {.lex_state = 110}, + [1591] = {.lex_state = 29}, + [1592] = {.lex_state = 110}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 110}, + [1595] = {.lex_state = 49}, + [1596] = {.lex_state = 0}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 42}, + [1599] = {.lex_state = 110}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 49}, [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 27}, + [1605] = {.lex_state = 0}, [1606] = {.lex_state = 110}, - [1607] = {.lex_state = 110}, - [1608] = {.lex_state = 27}, - [1609] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 29}, + [1609] = {.lex_state = 110}, [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 48}, - [1612] = {.lex_state = 110}, - [1613] = {.lex_state = 110}, - [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 27}, + [1611] = {.lex_state = 49}, + [1612] = {.lex_state = 29}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 29}, + [1615] = {.lex_state = 42}, [1616] = {.lex_state = 0}, [1617] = {.lex_state = 0}, [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 0}, + [1619] = {.lex_state = 35}, [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 27}, - [1622] = {.lex_state = 0}, - [1623] = {.lex_state = 27}, - [1624] = {.lex_state = 27}, - [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 27}, - [1627] = {.lex_state = 110}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 110}, - [1630] = {.lex_state = 42}, - [1631] = {.lex_state = 110}, - [1632] = {.lex_state = 110}, + [1621] = {.lex_state = 110}, + [1622] = {.lex_state = 110}, + [1623] = {.lex_state = 110}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 49}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 29}, + [1628] = {.lex_state = 29}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 29}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 28}, - [1635] = {.lex_state = 41}, - [1636] = {.lex_state = 41}, - [1637] = {.lex_state = 41}, + [1634] = {.lex_state = 29}, + [1635] = {.lex_state = 29}, + [1636] = {.lex_state = 29}, + [1637] = {.lex_state = 0}, [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 28}, - [1640] = {.lex_state = 41}, + [1639] = {.lex_state = 29}, + [1640] = {.lex_state = 49}, [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 48}, - [1643] = {.lex_state = 0}, + [1642] = {.lex_state = 29}, + [1643] = {.lex_state = 29}, [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 41}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 41}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 28}, + [1645] = {.lex_state = 0}, + [1646] = {.lex_state = 29}, + [1647] = {.lex_state = 29}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 41}, + [1650] = {.lex_state = 30}, + [1651] = {.lex_state = 49}, + [1652] = {.lex_state = 30}, + [1653] = {.lex_state = 41}, [1654] = {.lex_state = 0}, [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 28}, + [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 28}, - [1659] = {.lex_state = 28}, - [1660] = {.lex_state = 28}, - [1661] = {.lex_state = 48}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 28}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 28}, + [1658] = {.lex_state = 41}, + [1659] = {.lex_state = 41}, + [1660] = {.lex_state = 30}, + [1661] = {.lex_state = 41}, + [1662] = {.lex_state = 41}, + [1663] = {.lex_state = 41}, + [1664] = {.lex_state = 49}, + [1665] = {.lex_state = 41}, [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 28}, - [1668] = {.lex_state = 0}, + [1667] = {.lex_state = 41}, + [1668] = {.lex_state = 41}, [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 28}, - [1671] = {.lex_state = 28}, - [1672] = {.lex_state = 41}, - [1673] = {.lex_state = 28}, - [1674] = {.lex_state = 41}, - [1675] = {.lex_state = 41}, - [1676] = {.lex_state = 28}, - [1677] = {.lex_state = 28}, + [1670] = {.lex_state = 0}, + [1671] = {.lex_state = 41}, + [1672] = {.lex_state = 30}, + [1673] = {.lex_state = 30}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 30}, + [1676] = {.lex_state = 30}, + [1677] = {.lex_state = 30}, [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 28}, + [1679] = {.lex_state = 0}, [1680] = {.lex_state = 41}, - [1681] = {.lex_state = 48}, - [1682] = {.lex_state = 48}, - [1683] = {.lex_state = 41}, - [1684] = {.lex_state = 41}, - [1685] = {.lex_state = 41}, + [1681] = {.lex_state = 30}, + [1682] = {.lex_state = 0}, + [1683] = {.lex_state = 30}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 30}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 41}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 48}, - [1691] = {.lex_state = 0}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 30}, + [1689] = {.lex_state = 30}, + [1690] = {.lex_state = 0}, + [1691] = {.lex_state = 30}, [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, + [1693] = {.lex_state = 30}, + [1694] = {.lex_state = 30}, + [1695] = {.lex_state = 30}, [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 48}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 110}, - [1700] = {.lex_state = 41}, - [1701] = {.lex_state = 41}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 28}, - [1704] = {.lex_state = 28}, - [1705] = {.lex_state = 41}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 48}, - [1708] = {.lex_state = 28}, - [1709] = {.lex_state = 48}, + [1697] = {.lex_state = 30}, + [1698] = {.lex_state = 30}, + [1699] = {.lex_state = 49}, + [1700] = {.lex_state = 49}, + [1701] = {.lex_state = 0}, + [1702] = {.lex_state = 41}, + [1703] = {.lex_state = 30}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 41}, + [1707] = {.lex_state = 30}, + [1708] = {.lex_state = 49}, + [1709] = {.lex_state = 41}, [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 48}, + [1711] = {.lex_state = 110}, + [1712] = {.lex_state = 49}, + [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 28}, - [1717] = {.lex_state = 28}, - [1718] = {.lex_state = 48}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 0}, + [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 48}, - [1723] = {.lex_state = 28}, + [1721] = {.lex_state = 41}, + [1722] = {.lex_state = 0}, + [1723] = {.lex_state = 41}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, + [1725] = {.lex_state = 49}, [1726] = {.lex_state = 0}, [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 28}, - [1729] = {.lex_state = 28}, + [1728] = {.lex_state = 49}, + [1729] = {.lex_state = 0}, [1730] = {.lex_state = 0}, [1731] = {.lex_state = 41}, [1732] = {.lex_state = 41}, - [1733] = {.lex_state = 28}, + [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 48}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, + [1735] = {.lex_state = 41}, + [1736] = {.lex_state = 49}, + [1737] = {.lex_state = 41}, + [1738] = {.lex_state = 30}, [1739] = {.lex_state = 41}, - [1740] = {.lex_state = 41}, - [1741] = {.lex_state = 28}, - [1742] = {.lex_state = 41}, + [1740] = {.lex_state = 49}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 0}, [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 41}, + [1744] = {.lex_state = 0}, [1745] = {.lex_state = 41}, [1746] = {.lex_state = 0}, [1747] = {.lex_state = 0}, [1748] = {.lex_state = 41}, - [1749] = {.lex_state = 41}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 48}, - [1752] = {.lex_state = 48}, - [1753] = {.lex_state = 28}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 28}, - [1756] = {.lex_state = 48}, + [1749] = {.lex_state = 30}, + [1750] = {.lex_state = 49}, + [1751] = {.lex_state = 0}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 30}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, [1758] = {.lex_state = 41}, - [1759] = {.lex_state = 48}, - [1760] = {.lex_state = 48}, + [1759] = {.lex_state = 0}, + [1760] = {.lex_state = 41}, [1761] = {.lex_state = 41}, [1762] = {.lex_state = 41}, [1763] = {.lex_state = 0}, [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 41}, - [1767] = {.lex_state = 28}, - [1768] = {.lex_state = 110}, - [1769] = {.lex_state = 41}, - [1770] = {.lex_state = 48}, - [1771] = {.lex_state = 48}, - [1772] = {.lex_state = 0}, + [1766] = {.lex_state = 0}, + [1767] = {.lex_state = 41}, + [1768] = {.lex_state = 41}, + [1769] = {.lex_state = 49}, + [1770] = {.lex_state = 49}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 110}, [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 48}, - [1775] = {.lex_state = 0}, + [1774] = {.lex_state = 0}, + [1775] = {.lex_state = 110}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 110}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 48}, - [1780] = {.lex_state = 48}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 28}, - [1783] = {.lex_state = 28}, - [1784] = {.lex_state = 110}, + [1777] = {.lex_state = 41}, + [1778] = {.lex_state = 49}, + [1779] = {.lex_state = 41}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 30}, + [1782] = {.lex_state = 0}, + [1783] = {.lex_state = 0}, + [1784] = {.lex_state = 41}, [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 48}, - [1787] = {.lex_state = 110}, + [1786] = {.lex_state = 41}, + [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 28}, + [1789] = {.lex_state = 49}, + [1790] = {.lex_state = 30}, [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 41}, - [1793] = {.lex_state = 28}, - [1794] = {.lex_state = 48}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 49}, + [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, + [1797] = {.lex_state = 49}, + [1798] = {.lex_state = 49}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 28}, - [1802] = {.lex_state = 48}, - [1803] = {.lex_state = 48}, - [1804] = {.lex_state = 41}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 48}, - [1807] = {.lex_state = 48}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, + [1800] = {.lex_state = 110}, + [1801] = {.lex_state = 49}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 49}, + [1805] = {.lex_state = 41}, + [1806] = {.lex_state = 0}, + [1807] = {.lex_state = 49}, + [1808] = {.lex_state = 49}, + [1809] = {.lex_state = 30}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 28}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 48}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 49}, + [1813] = {.lex_state = 30}, + [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 48}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 41}, - [1821] = {.lex_state = 48}, - [1822] = {.lex_state = 48}, - [1823] = {.lex_state = 48}, - [1824] = {.lex_state = 41}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 110}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 41}, + [1820] = {.lex_state = 49}, + [1821] = {.lex_state = 49}, + [1822] = {.lex_state = 30}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 49}, + [1825] = {.lex_state = 49}, + [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 110}, - [1829] = {.lex_state = 41}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, + [1828] = {.lex_state = 41}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 49}, + [1831] = {.lex_state = 49}, [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 48}, - [1835] = {.lex_state = 41}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 48}, - [1838] = {.lex_state = 41}, - [1839] = {.lex_state = 48}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 110}, - [1845] = {.lex_state = 48}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 30}, + [1836] = {.lex_state = 49}, + [1837] = {.lex_state = 41}, + [1838] = {.lex_state = 30}, + [1839] = {.lex_state = 49}, + [1840] = {.lex_state = 49}, + [1841] = {.lex_state = 49}, + [1842] = {.lex_state = 30}, + [1843] = {.lex_state = 49}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, [1846] = {.lex_state = 110}, [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 48}, - [1850] = {.lex_state = 41}, + [1848] = {.lex_state = 30}, + [1849] = {.lex_state = 49}, + [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 48}, - [1855] = {.lex_state = 110}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 48}, + [1853] = {.lex_state = 49}, + [1854] = {.lex_state = 30}, + [1855] = {.lex_state = 49}, + [1856] = {.lex_state = 30}, + [1857] = {.lex_state = 0}, [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 110}, + [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 41}, + [1862] = {.lex_state = 49}, [1863] = {.lex_state = 41}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 48}, - [1866] = {.lex_state = 110}, - [1867] = {.lex_state = 28}, + [1864] = {.lex_state = 110}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 49}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 28}, - [1870] = {.lex_state = 110}, - [1871] = {.lex_state = 28}, - [1872] = {.lex_state = 48}, - [1873] = {.lex_state = 110}, - [1874] = {.lex_state = 41}, - [1875] = {.lex_state = 0}, + [1869] = {.lex_state = 30}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 0}, + [1872] = {.lex_state = 30}, + [1873] = {.lex_state = 0}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 49}, [1876] = {.lex_state = 110}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 48}, + [1877] = {.lex_state = 110}, + [1878] = {.lex_state = 110}, + [1879] = {.lex_state = 49}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 110}, + [1883] = {.lex_state = 49}, + [1884] = {.lex_state = 41}, + [1885] = {.lex_state = 0}, + [1886] = {.lex_state = 41}, + [1887] = {.lex_state = 0}, + [1888] = {.lex_state = 110}, + [1889] = {.lex_state = 30}, + [1890] = {.lex_state = 110}, + [1891] = {.lex_state = 110}, + [1892] = {.lex_state = 41}, + [1893] = {.lex_state = 110}, + [1894] = {.lex_state = 110}, + [1895] = {.lex_state = 0}, + [1896] = {.lex_state = 49}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14497,7 +14584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1641), + [sym_translation_unit] = STATE(1873), [sym_preproc_include] = STATE(52), [sym_preproc_def] = STATE(52), [sym_preproc_function_def] = STATE(52), @@ -14505,24 +14592,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(52), [sym_preproc_ifdef] = STATE(52), [sym_function_definition] = STATE(52), - [sym__old_style_function_definition] = STATE(463), + [sym__old_style_function_definition] = STATE(474), [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1248), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1157), [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(731), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(732), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(956), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym__top_level_expression_statement] = STATE(52), @@ -14536,35 +14623,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(52), [sym_continue_statement] = STATE(52), [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(1092), - [sym_conditional_expression] = STATE(1092), - [sym_assignment_expression] = STATE(1092), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(1092), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(1092), - [sym_cast_expression] = STATE(1092), - [sym_sizeof_expression] = STATE(1092), - [sym_alignof_expression] = STATE(1092), - [sym_offsetof_expression] = STATE(1092), - [sym_generic_expression] = STATE(1092), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(1092), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(1092), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(1092), - [sym_concatenated_string] = STATE(1092), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(1092), + [sym__expression] = STATE(1120), + [sym__expression_not_binary] = STATE(1119), + [sym_conditional_expression] = STATE(1119), + [sym_assignment_expression] = STATE(1119), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(1119), + [sym_binary_expression] = STATE(798), + [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(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(1119), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(1119), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(1119), + [sym_concatenated_string] = STATE(1119), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(1119), [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -14659,79 +14746,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1862), - [sym_preproc_elif] = STATE(1862), - [sym_preproc_elifdef] = STATE(1862), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(741), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1777), + [sym_preproc_elif] = STATE(1777), + [sym_preproc_elifdef] = STATE(1777), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -14833,79 +14920,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1749), - [sym_preproc_elif] = STATE(1749), - [sym_preproc_elifdef] = STATE(1749), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(741), + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(1653), + [sym_preproc_elif] = STATE(1653), + [sym_preproc_elifdef] = STATE(1653), + [sym_function_definition] = STATE(11), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_case_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym_seh_try_statement] = STATE(11), + [sym_seh_leave_statement] = STATE(11), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -15007,79 +15094,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1766), - [sym_preproc_elif] = STATE(1766), - [sym_preproc_elifdef] = STATE(1766), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(741), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1767), + [sym_preproc_elif] = STATE(1767), + [sym_preproc_elifdef] = STATE(1767), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -15181,79 +15268,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(1761), - [sym_preproc_elif] = STATE(1761), - [sym_preproc_elifdef] = STATE(1761), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(741), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(1663), + [sym_preproc_elif] = STATE(1663), + [sym_preproc_elifdef] = STATE(1663), + [sym_function_definition] = STATE(8), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(4), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym_seh_try_statement] = STATE(4), - [sym_seh_leave_statement] = STATE(4), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(8), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_case_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym_seh_try_statement] = STATE(8), + [sym_seh_leave_statement] = STATE(8), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -15355,79 +15442,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1700), - [sym_preproc_elif] = STATE(1700), - [sym_preproc_elifdef] = STATE(1700), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(741), + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1805), + [sym_preproc_elif] = STATE(1805), + [sym_preproc_elifdef] = STATE(1805), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_seh_try_statement] = STATE(2), + [sym_seh_leave_statement] = STATE(2), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -15529,208 +15616,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1705), - [sym_preproc_elif] = STATE(1705), - [sym_preproc_elifdef] = STATE(1705), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym_seh_try_statement] = STATE(6), - [sym_seh_leave_statement] = STATE(6), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [8] = { [sym_preproc_include] = STATE(9), [sym_preproc_def] = STATE(9), [sym_preproc_function_def] = STATE(9), [sym_preproc_call] = STATE(9), [sym_preproc_if] = STATE(9), [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1636), - [sym_preproc_elif] = STATE(1636), - [sym_preproc_elifdef] = STATE(1636), + [sym_preproc_else] = STATE(1739), + [sym_preproc_elif] = STATE(1739), + [sym_preproc_elifdef] = STATE(1739), [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(136), + [sym__old_style_function_definition] = STATE(148), [sym_declaration] = STATE(9), [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(9), [sym_labeled_statement] = STATE(9), [sym_expression_statement] = STATE(9), @@ -15746,41 +15659,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(9), [sym_seh_try_statement] = STATE(9), [sym_seh_leave_statement] = STATE(9), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(171), + [aux_sym_preproc_if_token2] = ACTIONS(169), [aux_sym_preproc_ifdef_token1] = ACTIONS(111), [aux_sym_preproc_ifdef_token2] = ACTIONS(111), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -15876,85 +15789,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [9] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1637), - [sym_preproc_elif] = STATE(1637), - [sym_preproc_elifdef] = STATE(1637), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(741), + [8] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1723), + [sym_preproc_elif] = STATE(1723), + [sym_preproc_elifdef] = STATE(1723), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(171), [aux_sym_preproc_ifdef_token1] = ACTIONS(111), [aux_sym_preproc_ifdef_token2] = ACTIONS(111), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -16050,85 +15963,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [10] = { - [sym_preproc_include] = STATE(3), - [sym_preproc_def] = STATE(3), - [sym_preproc_function_def] = STATE(3), - [sym_preproc_call] = STATE(3), - [sym_preproc_if] = STATE(3), - [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(1762), - [sym_preproc_elif] = STATE(1762), - [sym_preproc_elifdef] = STATE(1762), - [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(741), + [9] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1671), + [sym_preproc_elif] = STATE(1671), + [sym_preproc_elifdef] = STATE(1671), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(3), - [sym_labeled_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_switch_statement] = STATE(3), - [sym_case_statement] = STATE(3), - [sym_while_statement] = STATE(3), - [sym_do_statement] = STATE(3), - [sym_for_statement] = STATE(3), - [sym_return_statement] = STATE(3), - [sym_break_statement] = STATE(3), - [sym_continue_statement] = STATE(3), - [sym_goto_statement] = STATE(3), - [sym_seh_try_statement] = STATE(3), - [sym_seh_leave_statement] = STATE(3), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_if_token2] = ACTIONS(173), [aux_sym_preproc_ifdef_token1] = ACTIONS(111), [aux_sym_preproc_ifdef_token2] = ACTIONS(111), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -16224,85 +16137,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [11] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(1758), - [sym_preproc_elif] = STATE(1758), - [sym_preproc_elifdef] = STATE(1758), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(136), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(741), + [10] = { + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(1828), + [sym_preproc_elif] = STATE(1828), + [sym_preproc_elifdef] = STATE(1828), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym_seh_try_statement] = STATE(2), - [sym_seh_leave_statement] = STATE(2), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym_seh_try_statement] = STATE(4), + [sym_seh_leave_statement] = STATE(4), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_if_token2] = ACTIONS(175), [aux_sym_preproc_ifdef_token1] = ACTIONS(111), [aux_sym_preproc_ifdef_token2] = ACTIONS(111), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -16398,89 +16311,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [12] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1732), - [sym_preproc_elif] = STATE(1732), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), + [11] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1662), + [sym_preproc_elif] = STATE(1662), + [sym_preproc_elifdef] = STATE(1662), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(101), + [aux_sym_preproc_include_token1] = ACTIONS(103), + [aux_sym_preproc_def_token1] = ACTIONS(105), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(111), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token2] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(119), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16488,10 +16404,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(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym___extension__] = ACTIONS(123), + [anon_sym_typedef] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16501,7 +16417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16527,19 +16443,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -16569,84 +16485,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [13] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1863), - [sym_preproc_elif] = STATE(1863), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(741), + [12] = { + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(1784), + [sym_preproc_elif] = STATE(1784), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym_seh_try_statement] = STATE(16), - [sym_seh_leave_statement] = STATE(16), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym_seh_try_statement] = STATE(21), + [sym_seh_leave_statement] = STATE(21), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(229), + [aux_sym_preproc_if_token2] = ACTIONS(187), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -16740,84 +16656,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [14] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1648), - [sym_preproc_elif] = STATE(1648), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(741), + [13] = { + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(1661), + [sym_preproc_elif] = STATE(1661), + [sym_function_definition] = STATE(18), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym_seh_try_statement] = STATE(24), - [sym_seh_leave_statement] = STATE(24), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym_seh_try_statement] = STATE(18), + [sym_seh_leave_statement] = STATE(18), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(229), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -16911,205 +16827,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [15] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1701), - [sym_preproc_elif] = STATE(1701), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(741), + [14] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(148), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1147), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym_seh_try_statement] = STATE(17), - [sym_seh_leave_statement] = STATE(17), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(231), + [aux_sym_preproc_include_token1] = ACTIONS(234), + [aux_sym_preproc_def_token1] = ACTIONS(237), + [aux_sym_preproc_if_token1] = ACTIONS(240), + [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(245), + [aux_sym_preproc_else_token1] = ACTIONS(243), + [aux_sym_preproc_elif_token1] = ACTIONS(243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(243), + [aux_sym_preproc_elifdef_token2] = ACTIONS(243), + [sym_preproc_directive] = ACTIONS(248), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym___extension__] = ACTIONS(266), + [anon_sym_typedef] = ACTIONS(269), + [anon_sym_extern] = ACTIONS(272), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(314), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(320), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(329), + [anon_sym_return] = ACTIONS(332), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_goto] = ACTIONS(341), + [anon_sym___try] = ACTIONS(344), + [anon_sym___leave] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), [sym_comment] = ACTIONS(3), }, - [16] = { + [15] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1838), - [sym_preproc_elif] = STATE(1838), + [sym_preproc_else] = STATE(1863), + [sym_preproc_elif] = STATE(1863), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(221), + [sym__old_style_function_definition] = STATE(202), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17125,41 +17041,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(235), + [aux_sym_preproc_if_token2] = ACTIONS(383), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -17253,34 +17169,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [17] = { + [16] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1684), - [sym_preproc_elif] = STATE(1684), + [sym_preproc_else] = STATE(1709), + [sym_preproc_elif] = STATE(1709), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(221), + [sym__old_style_function_definition] = STATE(202), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17296,41 +17212,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_if_token2] = ACTIONS(385), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -17424,255 +17340,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [18] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1792), - [sym_preproc_elif] = STATE(1792), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [19] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(1635), - [sym_preproc_elif] = STATE(1635), - [sym_function_definition] = STATE(23), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(741), + [17] = { + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1768), + [sym_preproc_elif] = STATE(1768), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym_seh_try_statement] = STATE(23), - [sym_seh_leave_statement] = STATE(23), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym_seh_try_statement] = STATE(22), + [sym_seh_leave_statement] = STATE(22), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(387), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -17766,34 +17511,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [20] = { + [18] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1687), - [sym_preproc_elif] = STATE(1687), + [sym_preproc_else] = STATE(1668), + [sym_preproc_elif] = STATE(1668), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(221), + [sym__old_style_function_definition] = STATE(202), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17809,41 +17554,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_if_token2] = ACTIONS(389), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -17937,84 +17682,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [21] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1685), - [sym_preproc_elif] = STATE(1685), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(741), + [19] = { + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(1706), + [sym_preproc_elif] = STATE(1706), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_seh_try_statement] = STATE(15), + [sym_seh_leave_statement] = STATE(15), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(245), + [aux_sym_preproc_if_token2] = ACTIONS(391), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18108,84 +17853,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [22] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1769), - [sym_preproc_elif] = STATE(1769), - [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(741), + [20] = { + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(1680), + [sym_preproc_elif] = STATE(1680), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym_seh_try_statement] = STATE(20), - [sym_seh_leave_statement] = STATE(20), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_if_token2] = ACTIONS(393), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18279,34 +18024,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [23] = { + [21] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1645), - [sym_preproc_elif] = STATE(1645), + [sym_preproc_else] = STATE(1760), + [sym_preproc_elif] = STATE(1760), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(221), + [sym__old_style_function_definition] = STATE(202), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18322,41 +18067,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(249), + [aux_sym_preproc_if_token2] = ACTIONS(395), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18450,34 +18195,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [24] = { + [22] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1745), - [sym_preproc_elif] = STATE(1745), + [sym_preproc_else] = STATE(1732), + [sym_preproc_elif] = STATE(1732), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(221), + [sym__old_style_function_definition] = STATE(202), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18493,41 +18238,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(397), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18621,84 +18366,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(1731), - [sym_preproc_elif] = STATE(1731), - [sym_function_definition] = STATE(18), - [sym__old_style_function_definition] = STATE(221), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(741), + [23] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1702), + [sym_preproc_elif] = STATE(1702), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym_seh_try_statement] = STATE(18), - [sym_seh_leave_statement] = STATE(18), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(253), + [aux_sym_preproc_if_token2] = ACTIONS(399), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18792,32 +18537,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [26] = { + [24] = { [sym_preproc_include] = STATE(26), [sym_preproc_def] = STATE(26), [sym_preproc_function_def] = STATE(26), [sym_preproc_call] = STATE(26), [sym_preproc_if] = STATE(26), [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(1731), + [sym_preproc_elif] = STATE(1731), [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(136), + [sym__old_style_function_definition] = STATE(202), [sym_declaration] = STATE(26), [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1246), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(726), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(26), [sym_labeled_statement] = STATE(26), [sym_expression_statement] = STATE(26), @@ -18833,383 +18580,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(26), [sym_seh_try_statement] = STATE(26), [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(255), - [aux_sym_preproc_include_token1] = ACTIONS(258), - [aux_sym_preproc_def_token1] = ACTIONS(261), - [aux_sym_preproc_if_token1] = ACTIONS(264), - [aux_sym_preproc_if_token2] = ACTIONS(267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(269), - [aux_sym_preproc_else_token1] = ACTIONS(267), - [aux_sym_preproc_elif_token1] = ACTIONS(267), - [aux_sym_preproc_elifdef_token1] = ACTIONS(267), - [aux_sym_preproc_elifdef_token2] = ACTIONS(267), - [sym_preproc_directive] = ACTIONS(272), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(290), - [anon_sym_typedef] = ACTIONS(293), - [anon_sym_extern] = ACTIONS(296), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), - [anon_sym_if] = ACTIONS(335), - [anon_sym_switch] = ACTIONS(338), - [anon_sym_case] = ACTIONS(341), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(350), - [anon_sym_for] = ACTIONS(353), - [anon_sym_return] = ACTIONS(356), - [anon_sym_break] = ACTIONS(359), - [anon_sym_continue] = ACTIONS(362), - [anon_sym_goto] = ACTIONS(365), - [anon_sym___try] = ACTIONS(368), - [anon_sym___leave] = ACTIONS(371), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, - [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(221), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1243), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(728), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(953), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(407), - [aux_sym_preproc_include_token1] = ACTIONS(410), - [aux_sym_preproc_def_token1] = ACTIONS(413), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_if_token2] = ACTIONS(267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(419), - [aux_sym_preproc_else_token1] = ACTIONS(267), - [aux_sym_preproc_elif_token1] = ACTIONS(267), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_SEMI] = ACTIONS(425), - [anon_sym___extension__] = ACTIONS(428), - [anon_sym_typedef] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), - [anon_sym_if] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(443), - [anon_sym_case] = ACTIONS(446), - [anon_sym_default] = ACTIONS(449), - [anon_sym_while] = ACTIONS(452), - [anon_sym_do] = ACTIONS(455), - [anon_sym_for] = ACTIONS(458), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_goto] = ACTIONS(470), - [anon_sym___try] = ACTIONS(473), - [anon_sym___leave] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, - [28] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), + [aux_sym_preproc_else_token1] = ACTIONS(113), + [aux_sym_preproc_elif_token1] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19217,10 +18627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19230,8 +18640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19257,19 +18666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19299,85 +18708,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(380), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1245), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(741), + [25] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(1667), + [sym_preproc_elif] = STATE(1667), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(952), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_include_token1] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(533), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [aux_sym_preproc_if_token2] = ACTIONS(537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(541), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), + [aux_sym_preproc_else_token1] = ACTIONS(113), + [aux_sym_preproc_elif_token1] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19385,10 +18798,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(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19398,7 +18811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19424,19 +18837,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19466,84 +18879,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [30] = { - [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(399), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(741), + [26] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1665), + [sym_preproc_elif] = STATE(1665), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(202), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), + [aux_sym_preproc_else_token1] = ACTIONS(113), + [aux_sym_preproc_elif_token1] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19551,10 +18969,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19564,8 +18982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19591,19 +19008,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19633,77 +19050,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [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(202), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1148), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(736), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(866), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(407), + [aux_sym_preproc_include_token1] = ACTIONS(410), + [aux_sym_preproc_def_token1] = ACTIONS(413), + [aux_sym_preproc_if_token1] = ACTIONS(416), + [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(419), + [aux_sym_preproc_else_token1] = ACTIONS(243), + [aux_sym_preproc_elif_token1] = ACTIONS(243), + [sym_preproc_directive] = ACTIONS(422), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym___extension__] = ACTIONS(428), + [anon_sym_typedef] = ACTIONS(431), + [anon_sym_extern] = ACTIONS(434), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(437), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(440), + [anon_sym_switch] = ACTIONS(443), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(449), + [anon_sym_while] = ACTIONS(452), + [anon_sym_do] = ACTIONS(455), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(461), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_goto] = ACTIONS(470), + [anon_sym___try] = ACTIONS(473), + [anon_sym___leave] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), + [sym_comment] = ACTIONS(3), + }, + [28] = { + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(51), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -19732,7 +19318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19800,77 +19386,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [32] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [29] = { + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -19899,7 +19485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19967,77 +19553,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [30] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(378), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(729), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym_seh_try_statement] = STATE(30), + [sym_seh_leave_statement] = STATE(30), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(531), + [aux_sym_preproc_include_token1] = ACTIONS(534), + [aux_sym_preproc_def_token1] = ACTIONS(537), + [aux_sym_preproc_if_token1] = ACTIONS(540), + [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(543), + [aux_sym_preproc_ifdef_token2] = ACTIONS(543), + [sym_preproc_directive] = ACTIONS(546), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym___extension__] = ACTIONS(552), + [anon_sym_typedef] = ACTIONS(555), + [anon_sym_extern] = ACTIONS(558), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(564), + [anon_sym_switch] = ACTIONS(567), + [anon_sym_case] = ACTIONS(570), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(579), + [anon_sym_for] = ACTIONS(582), + [anon_sym_return] = ACTIONS(585), + [anon_sym_break] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_goto] = ACTIONS(594), + [anon_sym___try] = ACTIONS(597), + [anon_sym___leave] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), + [sym_comment] = ACTIONS(3), + }, + [31] = { + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20066,7 +19819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(603), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20134,77 +19887,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [32] = { + [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(368), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20233,7 +19986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(605), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20301,77 +20054,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [35] = { - [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(399), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(741), + [33] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(50), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20400,7 +20153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(607), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20468,77 +20221,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [34] = { + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_seh_try_statement] = STATE(47), + [sym_seh_leave_statement] = STATE(47), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20567,7 +20320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(609), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20635,77 +20388,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(741), + [35] = { + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20734,7 +20487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(611), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20802,77 +20555,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [38] = { - [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(399), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(741), + [36] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym_seh_try_statement] = STATE(32), - [sym_seh_leave_statement] = STATE(32), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_seh_try_statement] = STATE(44), + [sym_seh_leave_statement] = STATE(44), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20901,7 +20654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(613), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20969,77 +20722,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [37] = { + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21068,7 +20821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21136,77 +20889,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(741), + [38] = { + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym_seh_try_statement] = STATE(31), - [sym_seh_leave_statement] = STATE(31), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21235,7 +20988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21303,77 +21056,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [41] = { - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(741), + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym_seh_try_statement] = STATE(44), - [sym_seh_leave_statement] = STATE(44), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(619), + [aux_sym_preproc_include_token1] = ACTIONS(622), + [aux_sym_preproc_def_token1] = ACTIONS(625), + [aux_sym_preproc_if_token1] = ACTIONS(628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(634), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym___extension__] = ACTIONS(640), + [anon_sym_typedef] = ACTIONS(643), + [anon_sym_extern] = ACTIONS(646), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_case] = ACTIONS(660), + [anon_sym_default] = ACTIONS(663), + [anon_sym_while] = ACTIONS(666), + [anon_sym_do] = ACTIONS(669), + [anon_sym_for] = ACTIONS(672), + [anon_sym_return] = ACTIONS(675), + [anon_sym_break] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(681), + [anon_sym_goto] = ACTIONS(684), + [anon_sym___try] = ACTIONS(687), + [anon_sym___leave] = ACTIONS(690), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), + [sym_comment] = ACTIONS(3), + }, + [40] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym_seh_try_statement] = STATE(31), + [sym_seh_leave_statement] = STATE(31), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21402,7 +21322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(693), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21470,7 +21390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [42] = { + [41] = { [sym_preproc_include] = STATE(39), [sym_preproc_def] = STATE(39), [sym_preproc_function_def] = STATE(39), @@ -21478,24 +21398,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(39), [sym_preproc_ifdef] = STATE(39), [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(399), + [sym__old_style_function_definition] = STATE(368), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -21511,36 +21431,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21569,7 +21489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21637,77 +21557,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [43] = { - [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(399), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(741), + [42] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym_seh_try_statement] = STATE(28), - [sym_seh_leave_statement] = STATE(28), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym_seh_try_statement] = STATE(37), + [sym_seh_leave_statement] = STATE(37), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21736,7 +21656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21804,77 +21724,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [44] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [43] = { + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(368), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21903,7 +21823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21971,77 +21891,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [45] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(741), + [44] = { + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym_seh_try_statement] = STATE(33), - [sym_seh_leave_statement] = STATE(33), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22070,7 +21990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(701), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22138,85 +22058,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(380), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1245), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(741), + [45] = { + [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(368), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(952), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_include_token1] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(533), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [aux_sym_preproc_if_token2] = ACTIONS(611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(541), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22224,10 +22143,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(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(497), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22237,7 +22156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(703), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22263,19 +22183,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(497), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -22306,76 +22393,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [47] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22404,7 +22491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(707), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22473,170 +22560,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [48] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(378), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(615), - [aux_sym_preproc_include_token1] = ACTIONS(618), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [aux_sym_preproc_if_token1] = ACTIONS(624), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(630), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_SEMI] = ACTIONS(633), - [anon_sym___extension__] = ACTIONS(636), - [anon_sym_typedef] = ACTIONS(639), - [anon_sym_extern] = ACTIONS(642), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), - [anon_sym_if] = ACTIONS(650), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_case] = ACTIONS(656), - [anon_sym_default] = ACTIONS(659), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(665), - [anon_sym_for] = ACTIONS(668), - [anon_sym_return] = ACTIONS(671), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(677), - [anon_sym_goto] = ACTIONS(680), - [anon_sym___try] = ACTIONS(683), - [anon_sym___leave] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(729), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym_seh_try_statement] = STATE(30), + [sym_seh_leave_statement] = STATE(30), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(709), + [aux_sym_preproc_include_token1] = ACTIONS(711), + [aux_sym_preproc_def_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token2] = ACTIONS(717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(719), + [aux_sym_preproc_ifdef_token2] = ACTIONS(719), + [sym_preproc_directive] = ACTIONS(721), + [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(723), + [anon_sym___extension__] = ACTIONS(725), + [anon_sym_typedef] = ACTIONS(727), + [anon_sym_extern] = ACTIONS(729), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [49] = { @@ -22647,24 +22734,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(48), [sym_preproc_ifdef] = STATE(48), [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(399), + [sym__old_style_function_definition] = STATE(378), [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1149), [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(729), [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -22680,36 +22767,203 @@ 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(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(709), + [aux_sym_preproc_include_token1] = ACTIONS(711), + [aux_sym_preproc_def_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token2] = ACTIONS(759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(719), + [aux_sym_preproc_ifdef_token2] = ACTIONS(719), + [sym_preproc_directive] = ACTIONS(721), + [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(723), + [anon_sym___extension__] = ACTIONS(725), + [anon_sym_typedef] = ACTIONS(727), + [anon_sym_extern] = ACTIONS(729), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [50] = { + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22738,7 +22992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(761), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22806,244 +23060,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(380), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1245), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(952), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(691), - [aux_sym_preproc_include_token1] = ACTIONS(694), - [aux_sym_preproc_def_token1] = ACTIONS(697), - [aux_sym_preproc_if_token1] = ACTIONS(700), - [aux_sym_preproc_if_token2] = ACTIONS(267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(703), - [sym_preproc_directive] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_SEMI] = ACTIONS(709), - [anon_sym___extension__] = ACTIONS(712), - [anon_sym_typedef] = ACTIONS(715), - [anon_sym_extern] = ACTIONS(718), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), - [anon_sym_if] = ACTIONS(724), - [anon_sym_switch] = ACTIONS(727), - [anon_sym_case] = ACTIONS(730), - [anon_sym_default] = ACTIONS(733), - [anon_sym_while] = ACTIONS(736), - [anon_sym_do] = ACTIONS(739), - [anon_sym_for] = ACTIONS(742), - [anon_sym_return] = ACTIONS(745), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(751), - [anon_sym_goto] = ACTIONS(754), - [anon_sym___try] = ACTIONS(757), - [anon_sym___leave] = ACTIONS(760), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, [51] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1247), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(741), + [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(368), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(723), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(951), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(731), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(869), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23148,24 +23235,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(463), + [sym__old_style_function_definition] = STATE(474), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1248), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1157), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(731), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(732), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(956), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -23179,35 +23266,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(53), [sym_continue_statement] = STATE(53), [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(1092), - [sym_conditional_expression] = STATE(1092), - [sym_assignment_expression] = STATE(1092), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(1092), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(1092), - [sym_cast_expression] = STATE(1092), - [sym_sizeof_expression] = STATE(1092), - [sym_alignof_expression] = STATE(1092), - [sym_offsetof_expression] = STATE(1092), - [sym_generic_expression] = STATE(1092), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(1092), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(1092), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(1092), - [sym_concatenated_string] = STATE(1092), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(1092), + [sym__expression] = STATE(1120), + [sym__expression_not_binary] = STATE(1119), + [sym_conditional_expression] = STATE(1119), + [sym_assignment_expression] = STATE(1119), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(1119), + [sym_binary_expression] = STATE(798), + [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(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(1119), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(1119), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(1119), + [sym_concatenated_string] = STATE(1119), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(1119), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [ts_builtin_sym_end] = ACTIONS(765), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -23309,24 +23396,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(463), + [sym__old_style_function_definition] = STATE(474), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1248), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1157), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(741), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_call_modifier] = STATE(731), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_call_modifier] = STATE(732), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(956), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -23340,35 +23427,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(53), [sym_continue_statement] = STATE(53), [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(1092), - [sym_conditional_expression] = STATE(1092), - [sym_assignment_expression] = STATE(1092), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(1092), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(1092), - [sym_cast_expression] = STATE(1092), - [sym_sizeof_expression] = STATE(1092), - [sym_alignof_expression] = STATE(1092), - [sym_offsetof_expression] = STATE(1092), - [sym_generic_expression] = STATE(1092), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(1092), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(1092), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(1092), - [sym_concatenated_string] = STATE(1092), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(1092), + [sym__expression] = STATE(1120), + [sym__expression_not_binary] = STATE(1119), + [sym_conditional_expression] = STATE(1119), + [sym_assignment_expression] = STATE(1119), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(1119), + [sym_binary_expression] = STATE(798), + [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(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(1119), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(1119), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(1119), + [sym_concatenated_string] = STATE(1119), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(1119), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [ts_builtin_sym_end] = ACTIONS(767), [sym_identifier] = ACTIONS(769), [aux_sym_preproc_include_token1] = ACTIONS(772), @@ -23463,236 +23550,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1257), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1205), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(54), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(58), [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_if_token2] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [aux_sym_preproc_else_token1] = ACTIONS(913), - [aux_sym_preproc_elif_token1] = ACTIONS(913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(913), - [aux_sym_preproc_elifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym___extension__] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(933), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(993), - [anon_sym___try] = ACTIONS(996), - [anon_sym___leave] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [55] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1257), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token2] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [aux_sym_preproc_else_token1] = ACTIONS(1037), - [aux_sym_preproc_elif_token1] = ACTIONS(1037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [aux_sym_preproc_else_token1] = ACTIONS(912), + [aux_sym_preproc_elif_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23707,12 +23634,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -23740,10 +23667,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -23782,66 +23709,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [55] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1205), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_if_token2] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [aux_sym_preproc_else_token1] = ACTIONS(917), + [aux_sym_preproc_elif_token1] = ACTIONS(917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym___extension__] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(937), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(982), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_goto] = ACTIONS(997), + [anon_sym___try] = ACTIONS(1000), + [anon_sym___leave] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, [56] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1257), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1205), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(1035), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(1039), [aux_sym_preproc_def_token1] = ACTIONS(1039), [aux_sym_preproc_if_token1] = ACTIONS(1039), @@ -23945,19 +24032,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [57] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1257), - [sym_attribute_specifier] = STATE(741), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1205), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), + [sym_ms_declspec_modifier] = STATE(744), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -23972,36 +24059,36 @@ 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(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(1035), + [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(1041), [aux_sym_preproc_def_token1] = ACTIONS(1041), [aux_sym_preproc_if_token1] = ACTIONS(1041), @@ -24103,65 +24190,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [58] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1257), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1205), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(1035), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(1043), [aux_sym_preproc_def_token1] = ACTIONS(1043), [aux_sym_preproc_if_token1] = ACTIONS(1043), @@ -24263,74 +24350,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1256), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1193), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(62), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [aux_sym_preproc_else_token1] = ACTIONS(1043), - [aux_sym_preproc_elif_token1] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [aux_sym_preproc_else_token1] = ACTIONS(912), + [aux_sym_preproc_elif_token1] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24345,12 +24432,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24378,10 +24465,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -24421,232 +24508,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1256), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(1047), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_if_token2] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [aux_sym_preproc_else_token1] = ACTIONS(913), - [aux_sym_preproc_elif_token1] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym___extension__] = ACTIONS(1053), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_goto] = ACTIONS(1086), - [anon_sym___try] = ACTIONS(1089), - [anon_sym___leave] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1256), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1193), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(60), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(62), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token2] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [aux_sym_preproc_else_token1] = ACTIONS(1037), - [aux_sym_preproc_elif_token1] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [aux_sym_preproc_else_token1] = ACTIONS(1039), + [aux_sym_preproc_elif_token1] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24661,12 +24590,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24694,10 +24623,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -24736,75 +24665,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1256), - [sym_attribute_specifier] = STATE(741), + [61] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1193), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(60), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(63), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [aux_sym_preproc_else_token1] = ACTIONS(1039), - [aux_sym_preproc_elif_token1] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [aux_sym_preproc_else_token1] = ACTIONS(1043), + [aux_sym_preproc_elif_token1] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24819,12 +24748,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24852,10 +24781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -24894,65 +24823,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1256), - [sym_attribute_specifier] = STATE(741), + [62] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1193), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(61), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(63), [sym_identifier] = ACTIONS(1045), [aux_sym_preproc_include_token1] = ACTIONS(1041), [aux_sym_preproc_def_token1] = ACTIONS(1041), @@ -25052,228 +24981,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1255), - [sym_attribute_specifier] = STATE(741), + [63] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1193), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1095), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym___extension__] = ACTIONS(1101), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1115), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1133), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_if_token2] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [aux_sym_preproc_else_token1] = ACTIONS(917), + [aux_sym_preproc_elif_token1] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym___extension__] = ACTIONS(1053), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1065), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1077), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym___try] = ACTIONS(1089), + [anon_sym___leave] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1255), - [sym_attribute_specifier] = STATE(741), + [64] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1223), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym_seh_try_statement] = STATE(78), + [sym_seh_leave_statement] = STATE(78), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25281,21 +25213,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym___extension__] = ACTIONS(725), + [anon_sym_typedef] = ACTIONS(727), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(731), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25321,20 +25252,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(733), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25364,73 +25295,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [65] = { + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(72), - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25438,19 +25369,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1101), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25478,10 +25409,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -25489,8 +25420,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25520,72 +25451,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1255), - [sym_attribute_specifier] = STATE(741), + [66] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(67), + [ts_builtin_sym_end] = ACTIONS(1107), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25593,21 +25525,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25633,20 +25564,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25676,72 +25607,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1255), - [sym_attribute_specifier] = STATE(741), + [67] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(1109), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25749,21 +25681,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25789,20 +25720,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25832,73 +25763,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1259), - [sym_attribute_specifier] = STATE(741), + [68] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1223), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token2] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25906,20 +25837,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym___extension__] = ACTIONS(725), + [anon_sym_typedef] = ACTIONS(727), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(731), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25945,20 +25876,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(733), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25988,385 +25919,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1259), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_if_token2] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym___try] = ACTIONS(1207), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [71] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1255), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [72] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [69] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1223), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(68), + [sym_labeled_statement] = STATE(68), + [sym_expression_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_return_statement] = STATE(68), + [sym_break_statement] = STATE(68), + [sym_continue_statement] = STATE(68), + [sym_goto_statement] = STATE(68), + [sym_seh_try_statement] = STATE(68), + [sym_seh_leave_statement] = STATE(68), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26374,20 +25993,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym___extension__] = ACTIONS(725), + [anon_sym_typedef] = ACTIONS(727), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(731), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26413,20 +26032,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(733), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26456,73 +26075,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [70] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1224), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(1111), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26530,20 +26148,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(1153), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1107), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26569,20 +26188,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26612,73 +26231,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [71] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1224), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(73), - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1111), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26686,20 +26304,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(1153), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26725,20 +26344,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26768,82 +26387,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1255), - [sym_attribute_specifier] = STATE(741), + [72] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1156), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [73] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(1113), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -26854,8 +26630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1041), [anon_sym___thiscall] = ACTIONS(1041), [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26881,20 +26656,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(1041), [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26924,73 +26699,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1259), - [sym_attribute_specifier] = STATE(741), + [74] = { + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1224), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym_seh_try_statement] = STATE(78), - [sym_seh_leave_statement] = STATE(78), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [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(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(1111), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26998,20 +26772,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(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1097), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27037,20 +26812,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27080,73 +26855,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [75] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1223), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_if_token2] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [76] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1224), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, [77] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1259), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1224), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym_seh_try_statement] = STATE(69), - [sym_seh_leave_statement] = STATE(69), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token2] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1111), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27154,20 +27240,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(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1109), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27193,20 +27280,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27237,72 +27324,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [78] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1259), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1223), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [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(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27310,20 +27397,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym___extension__] = ACTIONS(725), + [anon_sym_typedef] = ACTIONS(727), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(731), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27349,20 +27436,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(733), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27393,65 +27480,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [79] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym_seh_try_statement] = STATE(80), - [sym_seh_leave_statement] = STATE(80), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(80), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(79), [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1156), + [anon_sym___try] = ACTIONS(1273), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [80] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(492), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27492,17 +27720,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -27533,66 +27761,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [81] = { + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1261), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym_seh_try_statement] = STATE(83), + [sym_seh_leave_statement] = STATE(83), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27633,17 +27861,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -27674,66 +27902,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [82] = { + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1261), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym_seh_try_statement] = STATE(80), + [sym_seh_leave_statement] = STATE(80), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27774,17 +28002,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -27815,207 +28043,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1283), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, [83] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(741), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1203), + [sym_attribute_specifier] = STATE(744), [sym_attribute_declaration] = STATE(492), - [sym_ms_declspec_modifier] = STATE(741), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1261), + [sym_ms_declspec_modifier] = STATE(744), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28056,17 +28143,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -28098,47 +28185,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [84] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1251), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__for_statement_body] = STATE(1796), - [sym__expression] = STATE(1018), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_declaration] = STATE(551), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__for_statement_body] = STATE(1669), + [sym__expression] = STATE(1055), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28208,47 +28295,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1251), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__for_statement_body] = STATE(1773), - [sym__expression] = STATE(1018), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_declaration] = STATE(551), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__for_statement_body] = STATE(1722), + [sym__expression] = STATE(1055), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28318,47 +28405,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1251), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__for_statement_body] = STATE(1724), - [sym__expression] = STATE(1018), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_declaration] = STATE(551), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__for_statement_body] = STATE(1791), + [sym__expression] = STATE(1055), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28428,47 +28515,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1251), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__for_statement_body] = STATE(1843), - [sym__expression] = STATE(1018), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_declaration] = STATE(551), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__for_statement_body] = STATE(1802), + [sym__expression] = STATE(1055), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28538,47 +28625,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1251), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__for_statement_body] = STATE(1633), - [sym__expression] = STATE(1018), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_declaration] = STATE(551), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__for_statement_body] = STATE(1814), + [sym__expression] = STATE(1055), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28648,47 +28735,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1251), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__for_statement_body] = STATE(1877), - [sym__expression] = STATE(1018), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), + [sym_declaration] = STATE(551), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__for_statement_body] = STATE(1742), + [sym__expression] = STATE(1055), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28758,7 +28845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [90] = { - [sym_else_clause] = STATE(92), + [sym_else_clause] = STATE(113), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -29065,105 +29152,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [93] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [94] = { @@ -29269,1434 +29356,822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [95] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [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(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [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(1310), - [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), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___except] = ACTIONS(1312), - [anon_sym___finally] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [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), - [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(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [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_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [97] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [98] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_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_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, [99] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_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_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, [100] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [101] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_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_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [102] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1314), - [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(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [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(1314), - [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), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___except] = ACTIONS(1316), - [anon_sym___finally] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [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), - [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(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [101] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [103] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [102] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [104] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [105] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [106] = { - [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_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - }, - [107] = { - [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_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [108] = { - [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_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [109] = { + [103] = { [sym_identifier] = ACTIONS(1330), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1330), @@ -30798,144 +30273,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [110] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [111] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), + [104] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___except] = ACTIONS(1336), + [anon_sym___finally] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [106] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), [anon_sym_long] = ACTIONS(1338), [anon_sym_short] = ACTIONS(1338), [anon_sym_static] = ACTIONS(1338), @@ -31002,109 +30579,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [112] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [107] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [113] = { + [108] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [109] = { [sym_identifier] = ACTIONS(1342), [aux_sym_preproc_include_token1] = ACTIONS(1342), [aux_sym_preproc_def_token1] = ACTIONS(1342), @@ -31206,7 +30885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [114] = { + [110] = { [sym_identifier] = ACTIONS(1346), [aux_sym_preproc_include_token1] = ACTIONS(1346), [aux_sym_preproc_def_token1] = ACTIONS(1346), @@ -31308,7 +30987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [115] = { + [111] = { [sym_identifier] = ACTIONS(1350), [aux_sym_preproc_include_token1] = ACTIONS(1350), [aux_sym_preproc_def_token1] = ACTIONS(1350), @@ -31410,7 +31089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [116] = { + [112] = { [sym_identifier] = ACTIONS(1354), [aux_sym_preproc_include_token1] = ACTIONS(1354), [aux_sym_preproc_def_token1] = ACTIONS(1354), @@ -31512,109 +31191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [117] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [118] = { + [113] = { [sym_identifier] = ACTIONS(1358), [aux_sym_preproc_include_token1] = ACTIONS(1358), [aux_sym_preproc_def_token1] = ACTIONS(1358), @@ -31716,7 +31293,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [119] = { + [114] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [115] = { [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1362), [aux_sym_preproc_def_token1] = ACTIONS(1362), @@ -31818,7 +31497,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [120] = { + [116] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [117] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [118] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [119] = { [sym_identifier] = ACTIONS(1366), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1366), @@ -31920,63 +31905,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [121] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), + [120] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [121] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [aux_sym_preproc_else_token1] = ACTIONS(1336), + [aux_sym_preproc_elif_token1] = ACTIONS(1336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [122] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [123] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), [anon_sym_struct] = ACTIONS(1370), [anon_sym_union] = ACTIONS(1370), [anon_sym_if] = ACTIONS(1370), @@ -32022,313 +32313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [122] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [123] = { - [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(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [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(1314), - [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), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [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), - [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(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, [124] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [125] = { [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), @@ -32430,7 +32415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [126] = { + [125] = { [sym_identifier] = ACTIONS(1378), [aux_sym_preproc_include_token1] = ACTIONS(1378), [aux_sym_preproc_def_token1] = ACTIONS(1378), @@ -32532,45 +32517,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [127] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), + [126] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [127] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), [anon_sym_auto] = ACTIONS(1382), [anon_sym_register] = ACTIONS(1382), [anon_sym_inline] = ACTIONS(1382), @@ -32737,17 +32824,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [129] = { + [ts_builtin_sym_end] = ACTIONS(1308), [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), + [anon_sym_COMMA] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_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), @@ -32808,6 +32893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1306), [anon_sym_goto] = ACTIONS(1306), [anon_sym___try] = ACTIONS(1306), + [anon_sym___except] = ACTIONS(1306), + [anon_sym___finally] = ACTIONS(1306), [anon_sym___leave] = ACTIONS(1306), [anon_sym_DASH_DASH] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1308), @@ -32839,6 +32926,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [130] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [131] = { [sym_identifier] = ACTIONS(1390), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1390), @@ -32940,7 +33129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [131] = { + [132] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), @@ -33042,7 +33231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [132] = { + [133] = { [sym_identifier] = ACTIONS(1398), [aux_sym_preproc_include_token1] = ACTIONS(1398), [aux_sym_preproc_def_token1] = ACTIONS(1398), @@ -33144,108 +33333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [133] = { - [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(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [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(1310), - [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), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [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), - [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(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, [134] = { [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), @@ -33550,7 +33637,1623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [137] = { - [sym_else_clause] = STATE(190), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(1422), + [aux_sym_preproc_elif_token1] = ACTIONS(1422), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [140] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [aux_sym_preproc_else_token1] = ACTIONS(1426), + [aux_sym_preproc_elif_token1] = ACTIONS(1426), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [aux_sym_preproc_else_token1] = ACTIONS(1442), + [aux_sym_preproc_elif_token1] = ACTIONS(1442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [145] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [aux_sym_preproc_else_token1] = ACTIONS(1446), + [aux_sym_preproc_elif_token1] = ACTIONS(1446), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [aux_sym_preproc_else_token1] = ACTIONS(1462), + [aux_sym_preproc_elif_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [aux_sym_preproc_else_token1] = ACTIONS(1466), + [aux_sym_preproc_elif_token1] = ACTIONS(1466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [aux_sym_preproc_else_token1] = ACTIONS(1470), + [aux_sym_preproc_elif_token1] = ACTIONS(1470), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + }, + [152] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [aux_sym_preproc_else_token1] = ACTIONS(1474), + [aux_sym_preproc_elif_token1] = ACTIONS(1474), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [153] = { + [sym_else_clause] = STATE(181), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -33608,7 +35311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1478), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -33650,1622 +35353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [138] = { - [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_if_token2] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), - [aux_sym_preproc_else_token1] = ACTIONS(1416), - [aux_sym_preproc_elif_token1] = ACTIONS(1416), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1416), - [sym_preproc_directive] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [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(1418), - [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), - [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___try] = ACTIONS(1416), - [anon_sym___leave] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [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), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), - [sym_comment] = ACTIONS(3), - }, - [139] = { - [sym_identifier] = ACTIONS(1420), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [aux_sym_preproc_else_token1] = ACTIONS(1420), - [aux_sym_preproc_elif_token1] = ACTIONS(1420), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym___try] = ACTIONS(1420), - [anon_sym___leave] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), - [sym_comment] = ACTIONS(3), - }, - [140] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(1424), - [aux_sym_preproc_elif_token1] = ACTIONS(1424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [aux_sym_preproc_else_token1] = ACTIONS(1428), - [aux_sym_preproc_elif_token1] = ACTIONS(1428), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - }, - [142] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_else_token1] = ACTIONS(1432), - [aux_sym_preproc_elif_token1] = ACTIONS(1432), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - }, - [143] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [aux_sym_preproc_else_token1] = ACTIONS(1436), - [aux_sym_preproc_elif_token1] = ACTIONS(1436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - }, - [144] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [aux_sym_preproc_else_token1] = ACTIONS(1440), - [aux_sym_preproc_elif_token1] = ACTIONS(1440), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - }, - [145] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [aux_sym_preproc_else_token1] = ACTIONS(1444), - [aux_sym_preproc_elif_token1] = ACTIONS(1444), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), - [sym_comment] = ACTIONS(3), - }, - [146] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [aux_sym_preproc_else_token1] = ACTIONS(1448), - [aux_sym_preproc_elif_token1] = ACTIONS(1448), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [aux_sym_preproc_else_token1] = ACTIONS(1456), - [aux_sym_preproc_elif_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [aux_sym_preproc_else_token1] = ACTIONS(1460), - [aux_sym_preproc_elif_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [150] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, [154] = { [sym_identifier] = ACTIONS(1480), [aux_sym_preproc_include_token1] = ACTIONS(1480), @@ -35974,1906 +36061,2006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [161] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, [162] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, [163] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [164] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [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(1310), - [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), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [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), - [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(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [165] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, [166] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [167] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [168] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, [169] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, [171] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [172] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [173] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [174] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [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(1314), - [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), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [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), - [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(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [175] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [178] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [176] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [177] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, [180] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, + [181] = { [sym_identifier] = ACTIONS(1358), [aux_sym_preproc_include_token1] = ACTIONS(1358), [aux_sym_preproc_def_token1] = ACTIONS(1358), @@ -37973,304 +38160,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - }, [182] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, [183] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [184] = { @@ -38374,506 +38461,706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [185] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [sym_comment] = ACTIONS(3), + }, + [186] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, [187] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [188] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [aux_sym_preproc_else_token1] = ACTIONS(1336), + [aux_sym_preproc_elif_token1] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, [190] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + }, + [192] = { [sym_identifier] = ACTIONS(1302), [aux_sym_preproc_include_token1] = ACTIONS(1302), [aux_sym_preproc_def_token1] = ACTIONS(1302), @@ -38973,807 +39260,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, [193] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [194] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [aux_sym_preproc_else_token1] = ACTIONS(1354), + [aux_sym_preproc_elif_token1] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, [195] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [198] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [199] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -39873,864 +39560,967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [200] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [196] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [aux_sym_preproc_else_token1] = ACTIONS(1444), - [aux_sym_preproc_elif_token1] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [197] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [aux_sym_preproc_else_token1] = ACTIONS(1436), - [aux_sym_preproc_elif_token1] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), + [198] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [aux_sym_preproc_else_token1] = ACTIONS(1496), - [aux_sym_preproc_elif_token1] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [199] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [200] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [201] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_else_clause] = STATE(310), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [202] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), + [203] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [204] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [205] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), [anon_sym_return] = ACTIONS(1480), [anon_sym_break] = ACTIONS(1480), [anon_sym_continue] = ACTIONS(1480), @@ -40766,404 +40556,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [206] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(1422), + [aux_sym_preproc_elif_token1] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [212] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [207] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_else_clause] = STATE(254), + [208] = { + [sym_else_clause] = STATE(286), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -41219,7 +40811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1508), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -41261,205 +40853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [aux_sym_preproc_else_token1] = ACTIONS(1460), - [aux_sym_preproc_elif_token1] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [aux_sym_preproc_else_token1] = ACTIONS(1448), - [aux_sym_preproc_elif_token1] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - }, - [216] = { + [209] = { [sym_identifier] = ACTIONS(1500), [aux_sym_preproc_include_token1] = ACTIONS(1500), [aux_sym_preproc_def_token1] = ACTIONS(1500), @@ -41558,7 +40952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [217] = { + [210] = { [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), [aux_sym_preproc_def_token1] = ACTIONS(1402), @@ -41657,805 +41051,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [aux_sym_preproc_else_token1] = ACTIONS(1504), - [aux_sym_preproc_elif_token1] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [211] = { + [sym_else_clause] = STATE(255), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(1420), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [aux_sym_preproc_else_token1] = ACTIONS(1420), - [aux_sym_preproc_elif_token1] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym___try] = ACTIONS(1420), - [anon_sym___leave] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [aux_sym_preproc_else_token1] = ACTIONS(1428), - [aux_sym_preproc_elif_token1] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), + [212] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [aux_sym_preproc_else_token1] = ACTIONS(1488), + [aux_sym_preproc_elif_token1] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [223] = { - [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_if_token2] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), - [aux_sym_preproc_else_token1] = ACTIONS(1416), - [aux_sym_preproc_elif_token1] = ACTIONS(1416), - [sym_preproc_directive] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [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(1418), - [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), - [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___try] = ACTIONS(1416), - [anon_sym___leave] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [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), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), + [213] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [aux_sym_preproc_else_token1] = ACTIONS(1446), + [aux_sym_preproc_elif_token1] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_else_token1] = ACTIONS(1432), - [aux_sym_preproc_elif_token1] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), + [214] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [aux_sym_preproc_else_token1] = ACTIONS(1442), + [aux_sym_preproc_elif_token1] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [aux_sym_preproc_else_token1] = ACTIONS(1440), - [aux_sym_preproc_elif_token1] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), + [215] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [aux_sym_preproc_else_token1] = ACTIONS(1426), + [aux_sym_preproc_elif_token1] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_else_clause] = STATE(351), + [216] = { + [sym_else_clause] = STATE(340), + [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_if_token2] = ACTIONS(1292), [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), [sym_preproc_directive] = ACTIONS(1292), @@ -42548,3147 +41645,1884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [217] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [aux_sym_preproc_else_token1] = ACTIONS(1466), + [aux_sym_preproc_elif_token1] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [228] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [aux_sym_preproc_else_token1] = ACTIONS(1456), - [aux_sym_preproc_elif_token1] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [218] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [aux_sym_preproc_else_token1] = ACTIONS(1470), + [aux_sym_preproc_elif_token1] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [aux_sym_preproc_else_token1] = ACTIONS(1488), - [aux_sym_preproc_elif_token1] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [219] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [aux_sym_preproc_else_token1] = ACTIONS(1484), + [aux_sym_preproc_elif_token1] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(1424), - [aux_sym_preproc_elif_token1] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [220] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [231] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [221] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [222] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [223] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [aux_sym_preproc_else_token1] = ACTIONS(1496), + [aux_sym_preproc_elif_token1] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [234] = { - [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(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [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(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [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), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [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), - [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(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [224] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [225] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [aux_sym_preproc_else_token1] = ACTIONS(1406), + [aux_sym_preproc_elif_token1] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [226] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [aux_sym_preproc_else_token1] = ACTIONS(1474), + [aux_sym_preproc_elif_token1] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [227] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [aux_sym_preproc_else_token1] = ACTIONS(1462), + [aux_sym_preproc_elif_token1] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [228] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [229] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [230] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [241] = { - [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(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [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(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [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), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [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), - [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(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [231] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [232] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [233] = { + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [254] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [sym__expression] = STATE(756), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(758), - [sym_call_expression] = STATE(758), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(758), - [sym_initializer_list] = STATE(755), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_identifier] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [256] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [257] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [234] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [235] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [259] = { + [236] = { + [ts_builtin_sym_end] = ACTIONS(1324), [sym_identifier] = ACTIONS(1322), [aux_sym_preproc_include_token1] = ACTIONS(1322), [aux_sym_preproc_def_token1] = ACTIONS(1322), @@ -45717,7 +43551,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -45786,4320 +43619,5397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [237] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [238] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [239] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [240] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [242] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [243] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [244] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [245] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [246] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [247] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [248] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [249] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [251] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [252] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [253] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [254] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [255] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [257] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [278] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [258] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [260] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [280] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [261] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [262] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [263] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [264] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [284] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [266] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [285] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [267] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [286] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [268] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [287] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [270] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [288] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [271] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [289] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [273] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [290] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [274] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [291] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [275] = { + [sym__expression] = STATE(808), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(798), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(798), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_initializer_list] = STATE(806), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_identifier] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_COLON] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PERCENT_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_EQ] = ACTIONS(1516), + [anon_sym_GT_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP_EQ] = ACTIONS(1516), + [anon_sym_CARET_EQ] = ACTIONS(1516), + [anon_sym_PIPE_EQ] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DASH_GT] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [292] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [276] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [293] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [277] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [294] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [279] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [280] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [296] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [281] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [297] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [282] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [283] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [299] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [285] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [300] = { - [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_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [286] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [288] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [289] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [290] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1332), + [291] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [292] = { [sym_identifier] = ACTIONS(1330), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1330), @@ -50128,6 +49038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50196,497 +49107,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - }, - [306] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [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_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [294] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [310] = { + [295] = { [ts_builtin_sym_end] = ACTIONS(1304), [sym_identifier] = ACTIONS(1302), [aux_sym_preproc_include_token1] = ACTIONS(1302), @@ -50784,208 +49401,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [296] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1396), + [297] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [298] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), [sym_preproc_directive] = ACTIONS(1394), @@ -50993,1077 +49610,1077 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(1396), [anon_sym_TILDE] = ACTIONS(1396), [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [316] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [299] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [300] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [302] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [303] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [305] = { + [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_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [306] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [323] = { - [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(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [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(1310), - [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), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [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), - [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(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [307] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [324] = { + [309] = { + [ts_builtin_sym_end] = ACTIONS(1396), [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), [sym_preproc_directive] = ACTIONS(1394), @@ -52128,824 +50745,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___try] = ACTIONS(1394), [anon_sym___leave] = ACTIONS(1394), [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [325] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, - [326] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [327] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [328] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [310] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [311] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [312] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [313] = { + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [333] = { + [314] = { [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), @@ -52970,6 +51194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -53038,105 +51263,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [315] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [335] = { + [316] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), @@ -53206,824 +51431,726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___try] = ACTIONS(1306), [anon_sym___leave] = ACTIONS(1306), [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [336] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [317] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [318] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [319] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [320] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [321] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [323] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [344] = { + [324] = { + [ts_builtin_sym_end] = ACTIONS(1376), [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), [sym_preproc_directive] = ACTIONS(1374), @@ -54116,301 +52243,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [345] = { - [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(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [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(1314), - [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), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [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), - [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(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [346] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [347] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [325] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [348] = { + [326] = { [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1362), [aux_sym_preproc_def_token1] = ACTIONS(1362), @@ -54508,208 +52439,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [327] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [330] = { + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [351] = { + [332] = { [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), @@ -54734,6 +52958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -54802,3597 +53027,1967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [353] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), - [sym_comment] = ACTIONS(3), - }, - [354] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [355] = { - [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_if_token2] = 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(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [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(1418), - [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), - [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___try] = ACTIONS(1416), - [anon_sym___leave] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [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), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), - [sym_comment] = ACTIONS(3), - }, - [356] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [357] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [358] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - }, - [359] = { - [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(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [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(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [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), - [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___try] = ACTIONS(1416), - [anon_sym___leave] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [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), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [362] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - }, - [363] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [365] = { - [sym_identifier] = ACTIONS(1420), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym___try] = ACTIONS(1420), - [anon_sym___leave] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), - [sym_comment] = ACTIONS(3), - }, - [366] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - }, - [367] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - }, - [368] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [369] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [370] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - }, - [371] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [333] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [334] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [335] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), + [336] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [337] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [338] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [339] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [340] = { + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [341] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [342] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_identifier] = ACTIONS(1420), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym___try] = ACTIONS(1420), - [anon_sym___leave] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), + [343] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [344] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [345] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [346] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [347] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [348] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [349] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [350] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [351] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [389] = { + [352] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [353] = { [sym_identifier] = ACTIONS(1488), [aux_sym_preproc_include_token1] = ACTIONS(1488), [aux_sym_preproc_def_token1] = ACTIONS(1488), @@ -58489,104 +55084,1462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [354] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [391] = { + [355] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [356] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [357] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [359] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [360] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [361] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [365] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [366] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + }, + [367] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + }, + [368] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [369] = { [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), [aux_sym_preproc_def_token1] = ACTIONS(1492), @@ -58683,108 +56636,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), + [370] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + }, + [371] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [372] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [393] = { + [373] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(3), + }, + [374] = { [sym_identifier] = ACTIONS(1496), [aux_sym_preproc_include_token1] = ACTIONS(1496), [aux_sym_preproc_def_token1] = ACTIONS(1496), [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), [sym_preproc_directive] = ACTIONS(1496), @@ -58809,7 +57054,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1496), [anon_sym___vectorcall] = ACTIONS(1496), [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), [anon_sym_signed] = ACTIONS(1496), [anon_sym_unsigned] = ACTIONS(1496), [anon_sym_long] = ACTIONS(1496), @@ -58877,298 +57121,1365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), + [375] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [376] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [377] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [378] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [379] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [380] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + }, + [381] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [382] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + }, + [383] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + }, + [384] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [385] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [397] = { + [386] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + }, + [387] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [388] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + }, + [389] = { [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), [aux_sym_preproc_def_token1] = ACTIONS(1504), @@ -59265,11 +58576,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [398] = { + [390] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [391] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + }, + [392] = { [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), [aux_sym_preproc_def_token1] = ACTIONS(1402), [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), [sym_preproc_directive] = ACTIONS(1402), @@ -59294,7 +58800,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1402), [anon_sym___vectorcall] = ACTIONS(1402), [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), [anon_sym_signed] = ACTIONS(1402), [anon_sym_unsigned] = ACTIONS(1402), [anon_sym_long] = ACTIONS(1402), @@ -59362,7 +58867,977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [399] = { + [393] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [394] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [395] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [396] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [397] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [398] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [399] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [400] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [401] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [402] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + }, + [403] = { [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), [aux_sym_preproc_def_token1] = ACTIONS(1410), @@ -59459,631 +59934,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - }, - [401] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - }, - [402] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - }, - [403] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - }, [404] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, [405] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(127), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_case_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym_seh_try_statement] = STATE(127), - [sym_seh_leave_statement] = STATE(127), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(430), [sym_identifier] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_goto] = ACTIONS(1582), - [anon_sym___try] = ACTIONS(1585), - [anon_sym___leave] = ACTIONS(1588), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1594), - [anon_sym___alignof__] = ACTIONS(1597), - [anon_sym___alignof] = ACTIONS(1597), - [anon_sym__alignof] = ACTIONS(1597), - [anon_sym_alignof] = ACTIONS(1597), - [anon_sym__Alignof] = ACTIONS(1597), - [anon_sym_offsetof] = ACTIONS(1600), - [anon_sym__Generic] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1606), - [anon_sym___asm__] = ACTIONS(1606), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_L_SQUOTE] = ACTIONS(1612), - [anon_sym_u_SQUOTE] = ACTIONS(1612), - [anon_sym_U_SQUOTE] = ACTIONS(1612), - [anon_sym_u8_SQUOTE] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_L_DQUOTE] = ACTIONS(1615), - [anon_sym_u_DQUOTE] = ACTIONS(1615), - [anon_sym_U_DQUOTE] = ACTIONS(1615), - [anon_sym_u8_DQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), - [anon_sym_NULL] = ACTIONS(1621), - [anon_sym_nullptr] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [406] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(298), - [sym_attributed_statement] = STATE(298), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(298), - [sym_if_statement] = STATE(298), - [sym_switch_statement] = STATE(298), - [sym_case_statement] = STATE(298), - [sym_while_statement] = STATE(298), - [sym_do_statement] = STATE(298), - [sym_for_statement] = STATE(298), - [sym_return_statement] = STATE(298), - [sym_break_statement] = STATE(298), - [sym_continue_statement] = STATE(298), - [sym_goto_statement] = STATE(298), - [sym_seh_try_statement] = STATE(298), - [sym_seh_leave_statement] = STATE(298), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1624), + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(300), + [sym_attributed_statement] = STATE(300), + [sym_labeled_statement] = STATE(300), + [sym_expression_statement] = STATE(300), + [sym_if_statement] = STATE(300), + [sym_switch_statement] = STATE(300), + [sym_case_statement] = STATE(300), + [sym_while_statement] = STATE(300), + [sym_do_statement] = STATE(300), + [sym_for_statement] = STATE(300), + [sym_return_statement] = STATE(300), + [sym_break_statement] = STATE(300), + [sym_continue_statement] = STATE(300), + [sym_goto_statement] = STATE(300), + [sym_seh_try_statement] = STATE(300), + [sym_seh_leave_statement] = STATE(300), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(1532), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60091,8 +60178,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -60105,8 +60192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -60137,145 +60224,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [407] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(238), - [sym_attributed_statement] = STATE(238), - [sym_labeled_statement] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_switch_statement] = STATE(238), - [sym_case_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_break_statement] = STATE(238), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(238), - [sym_seh_try_statement] = STATE(238), - [sym_seh_leave_statement] = STATE(238), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_case] = ACTIONS(1643), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym___try] = ACTIONS(1670), - [anon_sym___leave] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1594), - [anon_sym___alignof__] = ACTIONS(1597), - [anon_sym___alignof] = ACTIONS(1597), - [anon_sym__alignof] = ACTIONS(1597), - [anon_sym_alignof] = ACTIONS(1597), - [anon_sym__Alignof] = ACTIONS(1597), - [anon_sym_offsetof] = ACTIONS(1600), - [anon_sym__Generic] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1606), - [anon_sym___asm__] = ACTIONS(1606), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_L_SQUOTE] = ACTIONS(1612), - [anon_sym_u_SQUOTE] = ACTIONS(1612), - [anon_sym_U_SQUOTE] = ACTIONS(1612), - [anon_sym_u8_SQUOTE] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_L_DQUOTE] = ACTIONS(1615), - [anon_sym_u_DQUOTE] = ACTIONS(1615), - [anon_sym_U_DQUOTE] = ACTIONS(1615), - [anon_sym_u8_DQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), - [anon_sym_NULL] = ACTIONS(1621), - [anon_sym_nullptr] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - }, - [408] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(298), - [sym_attributed_statement] = STATE(298), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(298), - [sym_if_statement] = STATE(298), - [sym_switch_statement] = STATE(298), - [sym_case_statement] = STATE(298), - [sym_while_statement] = STATE(298), - [sym_do_statement] = STATE(298), - [sym_for_statement] = STATE(298), - [sym_return_statement] = STATE(298), - [sym_break_statement] = STATE(298), - [sym_continue_statement] = STATE(298), - [sym_goto_statement] = STATE(298), - [sym_seh_try_statement] = STATE(298), - [sym_seh_leave_statement] = STATE(298), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(251), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(265), + [sym_if_statement] = STATE(310), + [sym_switch_statement] = STATE(322), + [sym_case_statement] = STATE(328), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(332), + [sym_return_statement] = STATE(293), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(248), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(235), + [sym_seh_leave_statement] = STATE(276), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60284,20 +60275,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -60328,50 +60319,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [408] = { + [sym_attribute_declaration] = STATE(408), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_do] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_goto] = ACTIONS(1590), + [anon_sym___try] = ACTIONS(1593), + [anon_sym___leave] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [anon_sym___alignof__] = ACTIONS(1605), + [anon_sym___alignof] = ACTIONS(1605), + [anon_sym__alignof] = ACTIONS(1605), + [anon_sym_alignof] = ACTIONS(1605), + [anon_sym__Alignof] = ACTIONS(1605), + [anon_sym_offsetof] = ACTIONS(1608), + [anon_sym__Generic] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1614), + [anon_sym___asm__] = ACTIONS(1614), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_L_SQUOTE] = ACTIONS(1620), + [anon_sym_u_SQUOTE] = ACTIONS(1620), + [anon_sym_U_SQUOTE] = ACTIONS(1620), + [anon_sym_u8_SQUOTE] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [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(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, [409] = { - [sym_attribute_declaration] = STATE(433), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym_seh_try_statement] = STATE(309), - [sym_seh_leave_statement] = STATE(309), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1624), + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(1883), + [sym_attributed_statement] = STATE(1883), + [sym_labeled_statement] = STATE(1883), + [sym_expression_statement] = STATE(1883), + [sym_if_statement] = STATE(1883), + [sym_switch_statement] = STATE(1883), + [sym_case_statement] = STATE(1883), + [sym_while_statement] = STATE(1883), + [sym_do_statement] = STATE(1883), + [sym_for_statement] = STATE(1883), + [sym_return_statement] = STATE(1883), + [sym_break_statement] = STATE(1883), + [sym_continue_statement] = STATE(1883), + [sym_goto_statement] = STATE(1883), + [sym_seh_try_statement] = STATE(1883), + [sym_seh_leave_statement] = STATE(1883), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60379,22 +60466,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(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -60425,49 +60512,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [410] = { - [sym_attribute_declaration] = STATE(425), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym_seh_try_statement] = STATE(309), - [sym_seh_leave_statement] = STATE(309), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(1875), + [sym_attributed_statement] = STATE(1875), + [sym_labeled_statement] = STATE(1875), + [sym_expression_statement] = STATE(1875), + [sym_if_statement] = STATE(1875), + [sym_switch_statement] = STATE(1875), + [sym_case_statement] = STATE(1875), + [sym_while_statement] = STATE(1875), + [sym_do_statement] = STATE(1875), + [sym_for_statement] = STATE(1875), + [sym_return_statement] = STATE(1875), + [sym_break_statement] = STATE(1875), + [sym_continue_statement] = STATE(1875), + [sym_goto_statement] = STATE(1875), + [sym_seh_try_statement] = STATE(1875), + [sym_seh_leave_statement] = STATE(1875), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60476,20 +60563,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -60521,49 +60608,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [411] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(275), - [sym_attributed_statement] = STATE(275), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(275), - [sym_return_statement] = STATE(275), - [sym_break_statement] = STATE(275), - [sym_continue_statement] = STATE(275), - [sym_goto_statement] = STATE(275), - [sym_seh_try_statement] = STATE(275), - [sym_seh_leave_statement] = STATE(275), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60571,22 +60658,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -60617,49 +60704,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [412] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(207), - [sym_attributed_statement] = STATE(207), - [sym_labeled_statement] = STATE(207), - [sym_expression_statement] = STATE(207), - [sym_if_statement] = STATE(207), - [sym_switch_statement] = STATE(207), - [sym_case_statement] = STATE(207), - [sym_while_statement] = STATE(207), - [sym_do_statement] = STATE(207), - [sym_for_statement] = STATE(207), - [sym_return_statement] = STATE(207), - [sym_break_statement] = STATE(207), - [sym_continue_statement] = STATE(207), - [sym_goto_statement] = STATE(207), - [sym_seh_try_statement] = STATE(207), - [sym_seh_leave_statement] = STATE(207), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1624), + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(282), + [sym_attributed_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym_seh_try_statement] = STATE(282), + [sym_seh_leave_statement] = STATE(282), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60667,22 +60754,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(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -60713,49 +60800,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [413] = { - [sym_attribute_declaration] = STATE(447), - [sym_compound_statement] = STATE(116), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_expression_statement] = STATE(116), - [sym_if_statement] = STATE(116), - [sym_switch_statement] = STATE(116), - [sym_case_statement] = STATE(116), - [sym_while_statement] = STATE(116), - [sym_do_statement] = STATE(116), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(116), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(116), - [sym_seh_try_statement] = STATE(116), - [sym_seh_leave_statement] = STATE(116), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1682), + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym_seh_try_statement] = STATE(277), + [sym_seh_leave_statement] = STATE(277), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(1532), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60763,22 +60850,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -60809,49 +60896,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [414] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(300), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(297), - [sym_expression_statement] = STATE(296), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(293), - [sym_case_statement] = STATE(292), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(289), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(287), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(285), - [sym_seh_try_statement] = STATE(231), - [sym_seh_leave_statement] = STATE(284), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(351), + [sym_attributed_statement] = STATE(351), + [sym_labeled_statement] = STATE(351), + [sym_expression_statement] = STATE(351), + [sym_if_statement] = STATE(351), + [sym_switch_statement] = STATE(351), + [sym_case_statement] = STATE(351), + [sym_while_statement] = STATE(351), + [sym_do_statement] = STATE(351), + [sym_for_statement] = STATE(351), + [sym_return_statement] = STATE(351), + [sym_break_statement] = STATE(351), + [sym_continue_statement] = STATE(351), + [sym_goto_statement] = STATE(351), + [sym_seh_try_statement] = STATE(351), + [sym_seh_leave_statement] = STATE(351), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60859,22 +60946,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -60905,49 +60992,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [415] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(275), - [sym_attributed_statement] = STATE(275), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(275), - [sym_return_statement] = STATE(275), - [sym_break_statement] = STATE(275), - [sym_continue_statement] = STATE(275), - [sym_goto_statement] = STATE(275), - [sym_seh_try_statement] = STATE(275), - [sym_seh_leave_statement] = STATE(275), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1624), + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(491), + [sym_attributed_statement] = STATE(491), + [sym_labeled_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_if_statement] = STATE(491), + [sym_switch_statement] = STATE(491), + [sym_case_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_break_statement] = STATE(491), + [sym_continue_statement] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_seh_try_statement] = STATE(491), + [sym_seh_leave_statement] = STATE(491), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60955,22 +61042,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(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61001,49 +61088,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [416] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(137), - [sym_attributed_statement] = STATE(137), - [sym_labeled_statement] = STATE(137), - [sym_expression_statement] = STATE(137), - [sym_if_statement] = STATE(137), - [sym_switch_statement] = STATE(137), - [sym_case_statement] = STATE(137), - [sym_while_statement] = STATE(137), - [sym_do_statement] = STATE(137), - [sym_for_statement] = STATE(137), - [sym_return_statement] = STATE(137), - [sym_break_statement] = STATE(137), - [sym_continue_statement] = STATE(137), - [sym_goto_statement] = STATE(137), - [sym_seh_try_statement] = STATE(137), - [sym_seh_leave_statement] = STATE(137), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1684), + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(197), + [sym_attributed_statement] = STATE(198), + [sym_labeled_statement] = STATE(199), + [sym_expression_statement] = STATE(200), + [sym_if_statement] = STATE(201), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(175), + [sym_for_statement] = STATE(173), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(171), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(166), + [sym_seh_try_statement] = STATE(164), + [sym_seh_leave_statement] = STATE(163), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61052,7 +61139,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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -61097,49 +61184,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [417] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(248), - [sym_attributed_statement] = STATE(248), - [sym_labeled_statement] = STATE(248), - [sym_expression_statement] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_switch_statement] = STATE(248), - [sym_case_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_do_statement] = STATE(248), - [sym_for_statement] = STATE(248), - [sym_return_statement] = STATE(248), - [sym_break_statement] = STATE(248), - [sym_continue_statement] = STATE(248), - [sym_goto_statement] = STATE(248), - [sym_seh_try_statement] = STATE(248), - [sym_seh_leave_statement] = STATE(248), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1686), + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(287), + [sym_attributed_statement] = STATE(290), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(296), + [sym_if_statement] = STATE(299), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(317), + [sym_while_statement] = STATE(318), + [sym_do_statement] = STATE(320), + [sym_for_statement] = STATE(321), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(325), + [sym_continue_statement] = STATE(329), + [sym_goto_statement] = STATE(331), + [sym_seh_try_statement] = STATE(333), + [sym_seh_leave_statement] = STATE(347), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61147,22 +61234,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61193,49 +61280,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [418] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(1865), - [sym_attributed_statement] = STATE(1865), - [sym_labeled_statement] = STATE(1865), - [sym_expression_statement] = STATE(1865), - [sym_if_statement] = STATE(1865), - [sym_switch_statement] = STATE(1865), - [sym_case_statement] = STATE(1865), - [sym_while_statement] = STATE(1865), - [sym_do_statement] = STATE(1865), - [sym_for_statement] = STATE(1865), - [sym_return_statement] = STATE(1865), - [sym_break_statement] = STATE(1865), - [sym_continue_statement] = STATE(1865), - [sym_goto_statement] = STATE(1865), - [sym_seh_try_statement] = STATE(1865), - [sym_seh_leave_statement] = STATE(1865), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(216), + [sym_attributed_statement] = STATE(216), + [sym_labeled_statement] = STATE(216), + [sym_expression_statement] = STATE(216), + [sym_if_statement] = STATE(216), + [sym_switch_statement] = STATE(216), + [sym_case_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_do_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_return_statement] = STATE(216), + [sym_break_statement] = STATE(216), + [sym_continue_statement] = STATE(216), + [sym_goto_statement] = STATE(216), + [sym_seh_try_statement] = STATE(216), + [sym_seh_leave_statement] = STATE(216), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(1532), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61243,22 +61330,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61289,49 +61376,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [419] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(1849), - [sym_attributed_statement] = STATE(1849), - [sym_labeled_statement] = STATE(1849), - [sym_expression_statement] = STATE(1849), - [sym_if_statement] = STATE(1849), - [sym_switch_statement] = STATE(1849), - [sym_case_statement] = STATE(1849), - [sym_while_statement] = STATE(1849), - [sym_do_statement] = STATE(1849), - [sym_for_statement] = STATE(1849), - [sym_return_statement] = STATE(1849), - [sym_break_statement] = STATE(1849), - [sym_continue_statement] = STATE(1849), - [sym_goto_statement] = STATE(1849), - [sym_seh_try_statement] = STATE(1849), - [sym_seh_leave_statement] = STATE(1849), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(194), + [sym_attributed_statement] = STATE(194), + [sym_labeled_statement] = STATE(194), + [sym_expression_statement] = STATE(194), + [sym_if_statement] = STATE(194), + [sym_switch_statement] = STATE(194), + [sym_case_statement] = STATE(194), + [sym_while_statement] = STATE(194), + [sym_do_statement] = STATE(194), + [sym_for_statement] = STATE(194), + [sym_return_statement] = STATE(194), + [sym_break_statement] = STATE(194), + [sym_continue_statement] = STATE(194), + [sym_goto_statement] = STATE(194), + [sym_seh_try_statement] = STATE(194), + [sym_seh_leave_statement] = STATE(194), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61339,22 +61426,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61385,49 +61472,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [420] = { - [sym_attribute_declaration] = STATE(447), - [sym_compound_statement] = STATE(120), - [sym_attributed_statement] = STATE(120), - [sym_labeled_statement] = STATE(120), - [sym_expression_statement] = STATE(120), - [sym_if_statement] = STATE(120), - [sym_switch_statement] = STATE(120), - [sym_case_statement] = STATE(120), - [sym_while_statement] = STATE(120), - [sym_do_statement] = STATE(120), - [sym_for_statement] = STATE(120), - [sym_return_statement] = STATE(120), - [sym_break_statement] = STATE(120), - [sym_continue_statement] = STATE(120), - [sym_goto_statement] = STATE(120), - [sym_seh_try_statement] = STATE(120), - [sym_seh_leave_statement] = STATE(120), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1682), + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(1867), + [sym_attributed_statement] = STATE(1867), + [sym_labeled_statement] = STATE(1867), + [sym_expression_statement] = STATE(1867), + [sym_if_statement] = STATE(1867), + [sym_switch_statement] = STATE(1867), + [sym_case_statement] = STATE(1867), + [sym_while_statement] = STATE(1867), + [sym_do_statement] = STATE(1867), + [sym_for_statement] = STATE(1867), + [sym_return_statement] = STATE(1867), + [sym_break_statement] = STATE(1867), + [sym_continue_statement] = STATE(1867), + [sym_goto_statement] = STATE(1867), + [sym_seh_try_statement] = STATE(1867), + [sym_seh_leave_statement] = STATE(1867), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61435,22 +61522,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61481,49 +61568,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [421] = { - [sym_attribute_declaration] = STATE(447), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1682), + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym_seh_try_statement] = STATE(196), + [sym_seh_leave_statement] = STATE(196), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1660), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_goto] = ACTIONS(1681), + [anon_sym___try] = ACTIONS(1684), + [anon_sym___leave] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [anon_sym___alignof__] = ACTIONS(1605), + [anon_sym___alignof] = ACTIONS(1605), + [anon_sym__alignof] = ACTIONS(1605), + [anon_sym_alignof] = ACTIONS(1605), + [anon_sym__Alignof] = ACTIONS(1605), + [anon_sym_offsetof] = ACTIONS(1608), + [anon_sym__Generic] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1614), + [anon_sym___asm__] = ACTIONS(1614), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_L_SQUOTE] = ACTIONS(1620), + [anon_sym_u_SQUOTE] = ACTIONS(1620), + [anon_sym_U_SQUOTE] = ACTIONS(1620), + [anon_sym_u8_SQUOTE] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [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(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, + [422] = { + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(1855), + [sym_attributed_statement] = STATE(1855), + [sym_labeled_statement] = STATE(1855), + [sym_expression_statement] = STATE(1855), + [sym_if_statement] = STATE(1855), + [sym_switch_statement] = STATE(1855), + [sym_case_statement] = STATE(1855), + [sym_while_statement] = STATE(1855), + [sym_do_statement] = STATE(1855), + [sym_for_statement] = STATE(1855), + [sym_return_statement] = STATE(1855), + [sym_break_statement] = STATE(1855), + [sym_continue_statement] = STATE(1855), + [sym_goto_statement] = STATE(1855), + [sym_seh_try_statement] = STATE(1855), + [sym_seh_leave_statement] = STATE(1855), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61531,22 +61714,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61576,50 +61759,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1684), + [423] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(243), + [sym_attributed_statement] = STATE(243), + [sym_labeled_statement] = STATE(243), + [sym_expression_statement] = STATE(243), + [sym_if_statement] = STATE(243), + [sym_switch_statement] = STATE(243), + [sym_case_statement] = STATE(243), + [sym_while_statement] = STATE(243), + [sym_do_statement] = STATE(243), + [sym_for_statement] = STATE(243), + [sym_return_statement] = STATE(243), + [sym_break_statement] = STATE(243), + [sym_continue_statement] = STATE(243), + [sym_goto_statement] = STATE(243), + [sym_seh_try_statement] = STATE(243), + [sym_seh_leave_statement] = STATE(243), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_goto] = ACTIONS(1729), + [anon_sym___try] = ACTIONS(1732), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [anon_sym___alignof__] = ACTIONS(1605), + [anon_sym___alignof] = ACTIONS(1605), + [anon_sym__alignof] = ACTIONS(1605), + [anon_sym_alignof] = ACTIONS(1605), + [anon_sym__Alignof] = ACTIONS(1605), + [anon_sym_offsetof] = ACTIONS(1608), + [anon_sym__Generic] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1614), + [anon_sym___asm__] = ACTIONS(1614), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_L_SQUOTE] = ACTIONS(1620), + [anon_sym_u_SQUOTE] = ACTIONS(1620), + [anon_sym_U_SQUOTE] = ACTIONS(1620), + [anon_sym_u8_SQUOTE] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [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(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, + [424] = { + [sym_attribute_declaration] = STATE(427), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym_seh_try_statement] = STATE(281), + [sym_seh_leave_statement] = STATE(281), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61627,22 +61906,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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61672,50 +61951,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(1837), - [sym_attributed_statement] = STATE(1837), - [sym_labeled_statement] = STATE(1837), - [sym_expression_statement] = STATE(1837), - [sym_if_statement] = STATE(1837), - [sym_switch_statement] = STATE(1837), - [sym_case_statement] = STATE(1837), - [sym_while_statement] = STATE(1837), - [sym_do_statement] = STATE(1837), - [sym_for_statement] = STATE(1837), - [sym_return_statement] = STATE(1837), - [sym_break_statement] = STATE(1837), - [sym_continue_statement] = STATE(1837), - [sym_goto_statement] = STATE(1837), - [sym_seh_try_statement] = STATE(1837), - [sym_seh_leave_statement] = STATE(1837), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [425] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(127), + [sym_attributed_statement] = STATE(127), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(127), + [sym_switch_statement] = STATE(127), + [sym_case_statement] = STATE(127), + [sym_while_statement] = STATE(127), + [sym_do_statement] = STATE(127), + [sym_for_statement] = STATE(127), + [sym_return_statement] = STATE(127), + [sym_break_statement] = STATE(127), + [sym_continue_statement] = STATE(127), + [sym_goto_statement] = STATE(127), + [sym_seh_try_statement] = STATE(127), + [sym_seh_leave_statement] = STATE(127), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1528), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61723,22 +62002,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61768,50 +62047,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1684), + [426] = { + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(189), + [sym_attributed_statement] = STATE(189), + [sym_labeled_statement] = STATE(189), + [sym_expression_statement] = STATE(189), + [sym_if_statement] = STATE(189), + [sym_switch_statement] = STATE(189), + [sym_case_statement] = STATE(189), + [sym_while_statement] = STATE(189), + [sym_do_statement] = STATE(189), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(189), + [sym_break_statement] = STATE(189), + [sym_continue_statement] = STATE(189), + [sym_goto_statement] = STATE(189), + [sym_seh_try_statement] = STATE(189), + [sym_seh_leave_statement] = STATE(189), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61820,7 +62099,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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -61864,146 +62143,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_attribute_declaration] = STATE(425), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym_seh_try_statement] = STATE(309), - [sym_seh_leave_statement] = STATE(309), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1700), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_goto] = ACTIONS(1724), - [anon_sym___try] = ACTIONS(1727), - [anon_sym___leave] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1594), - [anon_sym___alignof__] = ACTIONS(1597), - [anon_sym___alignof] = ACTIONS(1597), - [anon_sym__alignof] = ACTIONS(1597), - [anon_sym_alignof] = ACTIONS(1597), - [anon_sym__Alignof] = ACTIONS(1597), - [anon_sym_offsetof] = ACTIONS(1600), - [anon_sym__Generic] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1606), - [anon_sym___asm__] = ACTIONS(1606), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_L_SQUOTE] = ACTIONS(1612), - [anon_sym_u_SQUOTE] = ACTIONS(1612), - [anon_sym_U_SQUOTE] = ACTIONS(1612), - [anon_sym_u8_SQUOTE] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_L_DQUOTE] = ACTIONS(1615), - [anon_sym_u_DQUOTE] = ACTIONS(1615), - [anon_sym_U_DQUOTE] = ACTIONS(1615), - [anon_sym_u8_DQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), - [anon_sym_NULL] = ACTIONS(1621), - [anon_sym_nullptr] = ACTIONS(1621), + [427] = { + [sym_attribute_declaration] = STATE(427), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym_seh_try_statement] = STATE(281), + [sym_seh_leave_statement] = STATE(281), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_switch] = ACTIONS(1750), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_goto] = ACTIONS(1777), + [anon_sym___try] = ACTIONS(1780), + [anon_sym___leave] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [anon_sym___alignof__] = ACTIONS(1605), + [anon_sym___alignof] = ACTIONS(1605), + [anon_sym__alignof] = ACTIONS(1605), + [anon_sym_alignof] = ACTIONS(1605), + [anon_sym__Alignof] = ACTIONS(1605), + [anon_sym_offsetof] = ACTIONS(1608), + [anon_sym__Generic] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1614), + [anon_sym___asm__] = ACTIONS(1614), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_L_SQUOTE] = ACTIONS(1620), + [anon_sym_u_SQUOTE] = ACTIONS(1620), + [anon_sym_U_SQUOTE] = ACTIONS(1620), + [anon_sym_u8_SQUOTE] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [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(1629), + [anon_sym_nullptr] = ACTIONS(1629), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(238), - [sym_attributed_statement] = STATE(238), - [sym_labeled_statement] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_switch_statement] = STATE(238), - [sym_case_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_break_statement] = STATE(238), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(238), - [sym_seh_try_statement] = STATE(238), - [sym_seh_leave_statement] = STATE(238), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1686), + [428] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym_seh_try_statement] = STATE(90), + [sym_seh_leave_statement] = STATE(90), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1528), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62011,22 +62290,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62056,50 +62335,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(261), - [sym_attributed_statement] = STATE(262), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(266), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(269), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(272), - [sym_return_statement] = STATE(273), - [sym_break_statement] = STATE(274), - [sym_continue_statement] = STATE(276), + [429] = { + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), [sym_goto_statement] = STATE(277), - [sym_seh_try_statement] = STATE(278), - [sym_seh_leave_statement] = STATE(279), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1686), + [sym_seh_try_statement] = STATE(277), + [sym_seh_leave_statement] = STATE(277), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62108,20 +62387,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -62152,146 +62431,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(169), - [sym_attributed_statement] = STATE(169), - [sym_labeled_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_switch_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym_seh_try_statement] = STATE(169), - [sym_seh_leave_statement] = STATE(169), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(1775), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1594), - [anon_sym___alignof__] = ACTIONS(1597), - [anon_sym___alignof] = ACTIONS(1597), - [anon_sym__alignof] = ACTIONS(1597), - [anon_sym_alignof] = ACTIONS(1597), - [anon_sym__Alignof] = ACTIONS(1597), - [anon_sym_offsetof] = ACTIONS(1600), - [anon_sym__Generic] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1606), - [anon_sym___asm__] = ACTIONS(1606), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_L_SQUOTE] = ACTIONS(1612), - [anon_sym_u_SQUOTE] = ACTIONS(1612), - [anon_sym_U_SQUOTE] = ACTIONS(1612), - [anon_sym_u8_SQUOTE] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_L_DQUOTE] = ACTIONS(1615), - [anon_sym_u_DQUOTE] = ACTIONS(1615), - [anon_sym_U_DQUOTE] = ACTIONS(1615), - [anon_sym_u8_DQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), - [anon_sym_NULL] = ACTIONS(1621), - [anon_sym_nullptr] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - }, - [429] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(491), - [sym_attributed_statement] = STATE(491), - [sym_labeled_statement] = STATE(491), - [sym_expression_statement] = STATE(491), - [sym_if_statement] = STATE(491), - [sym_switch_statement] = STATE(491), - [sym_case_statement] = STATE(491), - [sym_while_statement] = STATE(491), - [sym_do_statement] = STATE(491), - [sym_for_statement] = STATE(491), - [sym_return_statement] = STATE(491), - [sym_break_statement] = STATE(491), - [sym_continue_statement] = STATE(491), - [sym_goto_statement] = STATE(491), - [sym_seh_try_statement] = STATE(491), - [sym_seh_leave_statement] = STATE(491), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [430] = { + [sym_attribute_declaration] = STATE(408), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(1528), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62299,22 +62482,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62344,146 +62527,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym_seh_try_statement] = STATE(340), - [sym_seh_leave_statement] = STATE(340), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_goto] = ACTIONS(1817), - [anon_sym___try] = ACTIONS(1820), - [anon_sym___leave] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1594), - [anon_sym___alignof__] = ACTIONS(1597), - [anon_sym___alignof] = ACTIONS(1597), - [anon_sym__alignof] = ACTIONS(1597), - [anon_sym_alignof] = ACTIONS(1597), - [anon_sym__Alignof] = ACTIONS(1597), - [anon_sym_offsetof] = ACTIONS(1600), - [anon_sym__Generic] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1606), - [anon_sym___asm__] = ACTIONS(1606), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_L_SQUOTE] = ACTIONS(1612), - [anon_sym_u_SQUOTE] = ACTIONS(1612), - [anon_sym_U_SQUOTE] = ACTIONS(1612), - [anon_sym_u8_SQUOTE] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_L_DQUOTE] = ACTIONS(1615), - [anon_sym_u_DQUOTE] = ACTIONS(1615), - [anon_sym_U_DQUOTE] = ACTIONS(1615), - [anon_sym_u8_DQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), - [anon_sym_NULL] = ACTIONS(1621), - [anon_sym_nullptr] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - }, [431] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(245), - [sym_attributed_statement] = STATE(245), - [sym_labeled_statement] = STATE(245), - [sym_expression_statement] = STATE(245), - [sym_if_statement] = STATE(245), - [sym_switch_statement] = STATE(245), - [sym_case_statement] = STATE(245), - [sym_while_statement] = STATE(245), - [sym_do_statement] = STATE(245), - [sym_for_statement] = STATE(245), - [sym_return_statement] = STATE(245), - [sym_break_statement] = STATE(245), - [sym_continue_statement] = STATE(245), - [sym_goto_statement] = STATE(245), - [sym_seh_try_statement] = STATE(245), - [sym_seh_leave_statement] = STATE(245), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1686), + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(243), + [sym_attributed_statement] = STATE(243), + [sym_labeled_statement] = STATE(243), + [sym_expression_statement] = STATE(243), + [sym_if_statement] = STATE(243), + [sym_switch_statement] = STATE(243), + [sym_case_statement] = STATE(243), + [sym_while_statement] = STATE(243), + [sym_do_statement] = STATE(243), + [sym_for_statement] = STATE(243), + [sym_return_statement] = STATE(243), + [sym_break_statement] = STATE(243), + [sym_continue_statement] = STATE(243), + [sym_goto_statement] = STATE(243), + [sym_seh_try_statement] = STATE(243), + [sym_seh_leave_statement] = STATE(243), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62492,7 +62579,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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(499), [anon_sym_if] = ACTIONS(503), [anon_sym_switch] = ACTIONS(505), @@ -62537,49 +62624,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [432] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(259), - [sym_attributed_statement] = STATE(259), - [sym_labeled_statement] = STATE(259), - [sym_expression_statement] = STATE(259), - [sym_if_statement] = STATE(259), - [sym_switch_statement] = STATE(259), - [sym_case_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [sym_do_statement] = STATE(259), - [sym_for_statement] = STATE(259), - [sym_return_statement] = STATE(259), - [sym_break_statement] = STATE(259), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(259), - [sym_seh_try_statement] = STATE(259), - [sym_seh_leave_statement] = STATE(259), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1686), + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(234), + [sym_attributed_statement] = STATE(234), + [sym_labeled_statement] = STATE(234), + [sym_expression_statement] = STATE(234), + [sym_if_statement] = STATE(234), + [sym_switch_statement] = STATE(234), + [sym_case_statement] = STATE(234), + [sym_while_statement] = STATE(234), + [sym_do_statement] = STATE(234), + [sym_for_statement] = STATE(234), + [sym_return_statement] = STATE(234), + [sym_break_statement] = STATE(234), + [sym_continue_statement] = STATE(234), + [sym_goto_statement] = STATE(234), + [sym_seh_try_statement] = STATE(234), + [sym_seh_leave_statement] = STATE(234), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62588,7 +62675,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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(499), [anon_sym_if] = ACTIONS(503), [anon_sym_switch] = ACTIONS(505), @@ -62633,145 +62720,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [433] = { - [sym_attribute_declaration] = STATE(433), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym_seh_try_statement] = STATE(309), - [sym_seh_leave_statement] = STATE(309), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_goto] = ACTIONS(1724), - [anon_sym___try] = ACTIONS(1847), - [anon_sym___leave] = ACTIONS(1850), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1594), - [anon_sym___alignof__] = ACTIONS(1597), - [anon_sym___alignof] = ACTIONS(1597), - [anon_sym__alignof] = ACTIONS(1597), - [anon_sym_alignof] = ACTIONS(1597), - [anon_sym__Alignof] = ACTIONS(1597), - [anon_sym_offsetof] = ACTIONS(1600), - [anon_sym__Generic] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1606), - [anon_sym___asm__] = ACTIONS(1606), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_L_SQUOTE] = ACTIONS(1612), - [anon_sym_u_SQUOTE] = ACTIONS(1612), - [anon_sym_U_SQUOTE] = ACTIONS(1612), - [anon_sym_u8_SQUOTE] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_L_DQUOTE] = ACTIONS(1615), - [anon_sym_u_DQUOTE] = ACTIONS(1615), - [anon_sym_U_DQUOTE] = ACTIONS(1615), - [anon_sym_u8_DQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), - [anon_sym_NULL] = ACTIONS(1621), - [anon_sym_nullptr] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - }, - [434] = { [sym_attribute_declaration] = STATE(446), - [sym_compound_statement] = STATE(350), - [sym_attributed_statement] = STATE(350), - [sym_labeled_statement] = STATE(350), - [sym_expression_statement] = STATE(350), - [sym_if_statement] = STATE(350), - [sym_switch_statement] = STATE(350), - [sym_case_statement] = STATE(350), - [sym_while_statement] = STATE(350), - [sym_do_statement] = STATE(350), - [sym_for_statement] = STATE(350), - [sym_return_statement] = STATE(350), - [sym_break_statement] = STATE(350), - [sym_continue_statement] = STATE(350), - [sym_goto_statement] = STATE(350), - [sym_seh_try_statement] = STATE(350), - [sym_seh_leave_statement] = STATE(350), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym_compound_statement] = STATE(300), + [sym_attributed_statement] = STATE(300), + [sym_labeled_statement] = STATE(300), + [sym_expression_statement] = STATE(300), + [sym_if_statement] = STATE(300), + [sym_switch_statement] = STATE(300), + [sym_case_statement] = STATE(300), + [sym_while_statement] = STATE(300), + [sym_do_statement] = STATE(300), + [sym_for_statement] = STATE(300), + [sym_return_statement] = STATE(300), + [sym_break_statement] = STATE(300), + [sym_continue_statement] = STATE(300), + [sym_goto_statement] = STATE(300), + [sym_seh_try_statement] = STATE(300), + [sym_seh_leave_statement] = STATE(300), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [aux_sym_attributed_declarator_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62779,22 +62770,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(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62824,50 +62815,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_attribute_declaration] = STATE(446), - [sym_compound_statement] = STATE(347), - [sym_attributed_statement] = STATE(347), - [sym_labeled_statement] = STATE(347), - [sym_expression_statement] = STATE(347), - [sym_if_statement] = STATE(347), - [sym_switch_statement] = STATE(347), - [sym_case_statement] = STATE(347), - [sym_while_statement] = STATE(347), - [sym_do_statement] = STATE(347), - [sym_for_statement] = STATE(347), - [sym_return_statement] = STATE(347), - [sym_break_statement] = STATE(347), - [sym_continue_statement] = STATE(347), - [sym_goto_statement] = STATE(347), - [sym_seh_try_statement] = STATE(347), - [sym_seh_leave_statement] = STATE(347), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1853), + [434] = { + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(153), + [sym_attributed_statement] = STATE(153), + [sym_labeled_statement] = STATE(153), + [sym_expression_statement] = STATE(153), + [sym_if_statement] = STATE(153), + [sym_switch_statement] = STATE(153), + [sym_case_statement] = STATE(153), + [sym_while_statement] = STATE(153), + [sym_do_statement] = STATE(153), + [sym_for_statement] = STATE(153), + [sym_return_statement] = STATE(153), + [sym_break_statement] = STATE(153), + [sym_continue_statement] = STATE(153), + [sym_goto_statement] = STATE(153), + [sym_seh_try_statement] = STATE(153), + [sym_seh_leave_statement] = STATE(153), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62875,22 +62866,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(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62920,146 +62911,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_attribute_declaration] = STATE(447), - [sym_compound_statement] = STATE(107), - [sym_attributed_statement] = STATE(107), - [sym_labeled_statement] = STATE(107), - [sym_expression_statement] = STATE(107), - [sym_if_statement] = STATE(107), - [sym_switch_statement] = STATE(107), - [sym_case_statement] = STATE(107), - [sym_while_statement] = STATE(107), - [sym_do_statement] = STATE(107), - [sym_for_statement] = STATE(107), - [sym_return_statement] = STATE(107), - [sym_break_statement] = STATE(107), - [sym_continue_statement] = STATE(107), - [sym_goto_statement] = STATE(107), - [sym_seh_try_statement] = STATE(107), - [sym_seh_leave_statement] = STATE(107), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [435] = { + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(272), + [sym_attributed_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_case_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_goto_statement] = STATE(272), + [sym_seh_try_statement] = STATE(272), + [sym_seh_leave_statement] = STATE(272), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1798), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_goto] = ACTIONS(1822), + [anon_sym___try] = ACTIONS(1825), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [anon_sym___alignof__] = ACTIONS(1605), + [anon_sym___alignof] = ACTIONS(1605), + [anon_sym__alignof] = ACTIONS(1605), + [anon_sym_alignof] = ACTIONS(1605), + [anon_sym__Alignof] = ACTIONS(1605), + [anon_sym_offsetof] = ACTIONS(1608), + [anon_sym__Generic] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1614), + [anon_sym___asm__] = ACTIONS(1614), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_L_SQUOTE] = ACTIONS(1620), + [anon_sym_u_SQUOTE] = ACTIONS(1620), + [anon_sym_U_SQUOTE] = ACTIONS(1620), + [anon_sym_u8_SQUOTE] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [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(1629), + [anon_sym_nullptr] = ACTIONS(1629), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_attribute_declaration] = STATE(447), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(104), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(98), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(112), - [sym_continue_statement] = STATE(117), - [sym_goto_statement] = STATE(122), - [sym_seh_try_statement] = STATE(124), - [sym_seh_leave_statement] = STATE(129), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1682), + [436] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(93), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(107), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(114), + [sym_case_statement] = STATE(122), + [sym_while_statement] = STATE(130), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(116), + [sym_seh_try_statement] = STATE(118), + [sym_seh_leave_statement] = STATE(120), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1528), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63068,7 +63059,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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_if] = ACTIONS(131), [anon_sym_switch] = ACTIONS(133), @@ -63112,50 +63103,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(1857), - [sym_attributed_statement] = STATE(1857), - [sym_labeled_statement] = STATE(1857), - [sym_expression_statement] = STATE(1857), - [sym_if_statement] = STATE(1857), - [sym_switch_statement] = STATE(1857), - [sym_case_statement] = STATE(1857), - [sym_while_statement] = STATE(1857), - [sym_do_statement] = STATE(1857), - [sym_for_statement] = STATE(1857), - [sym_return_statement] = STATE(1857), - [sym_break_statement] = STATE(1857), - [sym_continue_statement] = STATE(1857), - [sym_goto_statement] = STATE(1857), - [sym_seh_try_statement] = STATE(1857), - [sym_seh_leave_statement] = STATE(1857), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [437] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(252), + [sym_attributed_statement] = STATE(256), + [sym_labeled_statement] = STATE(258), + [sym_expression_statement] = STATE(259), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(269), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(238), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(288), + [sym_return_statement] = STATE(295), + [sym_break_statement] = STATE(297), + [sym_continue_statement] = STATE(302), + [sym_goto_statement] = STATE(303), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(305), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(1532), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63163,22 +63154,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63208,50 +63199,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [439] = { + [438] = { [sym_attribute_declaration] = STATE(446), - [sym_compound_statement] = STATE(226), - [sym_attributed_statement] = STATE(226), - [sym_labeled_statement] = STATE(226), - [sym_expression_statement] = STATE(226), - [sym_if_statement] = STATE(226), - [sym_switch_statement] = STATE(226), - [sym_case_statement] = STATE(226), - [sym_while_statement] = STATE(226), - [sym_do_statement] = STATE(226), - [sym_for_statement] = STATE(226), - [sym_return_statement] = STATE(226), - [sym_break_statement] = STATE(226), - [sym_continue_statement] = STATE(226), - [sym_goto_statement] = STATE(226), - [sym_seh_try_statement] = STATE(226), - [sym_seh_leave_statement] = STATE(226), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym_compound_statement] = STATE(1853), + [sym_attributed_statement] = STATE(1853), + [sym_labeled_statement] = STATE(1853), + [sym_expression_statement] = STATE(1853), + [sym_if_statement] = STATE(1853), + [sym_switch_statement] = STATE(1853), + [sym_case_statement] = STATE(1853), + [sym_while_statement] = STATE(1853), + [sym_do_statement] = STATE(1853), + [sym_for_statement] = STATE(1853), + [sym_return_statement] = STATE(1853), + [sym_break_statement] = STATE(1853), + [sym_continue_statement] = STATE(1853), + [sym_goto_statement] = STATE(1853), + [sym_seh_try_statement] = STATE(1853), + [sym_seh_leave_statement] = STATE(1853), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [aux_sym_attributed_declarator_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63259,22 +63250,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(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63304,50 +63295,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(169), - [sym_attributed_statement] = STATE(169), - [sym_labeled_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_switch_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym_seh_try_statement] = STATE(169), - [sym_seh_leave_statement] = STATE(169), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1684), + [439] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(91), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym_seh_try_statement] = STATE(91), + [sym_seh_leave_statement] = STATE(91), + [sym__expression] = STATE(1064), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1844), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1528), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63355,22 +63346,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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63400,50 +63391,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(213), - [sym_attributed_statement] = STATE(213), - [sym_labeled_statement] = STATE(213), - [sym_expression_statement] = STATE(213), - [sym_if_statement] = STATE(213), - [sym_switch_statement] = STATE(213), - [sym_case_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_do_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_return_statement] = STATE(213), - [sym_break_statement] = STATE(213), - [sym_continue_statement] = STATE(213), - [sym_goto_statement] = STATE(213), - [sym_seh_try_statement] = STATE(213), - [sym_seh_leave_statement] = STATE(213), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1686), + [440] = { + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym_seh_try_statement] = STATE(246), + [sym_seh_leave_statement] = STATE(246), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63452,20 +63443,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -63496,50 +63487,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [441] = { + [sym_attribute_declaration] = STATE(441), + [sym_compound_statement] = STATE(272), + [sym_attributed_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_case_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_goto_statement] = STATE(272), + [sym_seh_try_statement] = STATE(272), + [sym_seh_leave_statement] = STATE(272), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(441), + [sym_identifier] = ACTIONS(1828), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_goto] = ACTIONS(1822), + [anon_sym___try] = ACTIONS(1849), + [anon_sym___leave] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [anon_sym___alignof__] = ACTIONS(1605), + [anon_sym___alignof] = ACTIONS(1605), + [anon_sym__alignof] = ACTIONS(1605), + [anon_sym_alignof] = ACTIONS(1605), + [anon_sym__Alignof] = ACTIONS(1605), + [anon_sym_offsetof] = ACTIONS(1608), + [anon_sym__Generic] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1614), + [anon_sym___asm__] = ACTIONS(1614), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_L_SQUOTE] = ACTIONS(1620), + [anon_sym_u_SQUOTE] = ACTIONS(1620), + [anon_sym_U_SQUOTE] = ACTIONS(1620), + [anon_sym_u8_SQUOTE] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [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(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, [442] = { - [sym_attribute_declaration] = STATE(446), - [sym_compound_statement] = STATE(337), - [sym_attributed_statement] = STATE(337), - [sym_labeled_statement] = STATE(337), - [sym_expression_statement] = STATE(337), - [sym_if_statement] = STATE(337), - [sym_switch_statement] = STATE(337), - [sym_case_statement] = STATE(337), - [sym_while_statement] = STATE(337), - [sym_do_statement] = STATE(337), - [sym_for_statement] = STATE(337), - [sym_return_statement] = STATE(337), - [sym_break_statement] = STATE(337), - [sym_continue_statement] = STATE(337), - [sym_goto_statement] = STATE(337), - [sym_seh_try_statement] = STATE(337), - [sym_seh_leave_statement] = STATE(337), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1853), + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(208), + [sym_attributed_statement] = STATE(208), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(208), + [sym_if_statement] = STATE(208), + [sym_switch_statement] = STATE(208), + [sym_case_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_do_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_return_statement] = STATE(208), + [sym_break_statement] = STATE(208), + [sym_continue_statement] = STATE(208), + [sym_goto_statement] = STATE(208), + [sym_seh_try_statement] = STATE(208), + [sym_seh_leave_statement] = STATE(208), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63547,22 +63634,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(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63593,49 +63680,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [443] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(201), - [sym_attributed_statement] = STATE(201), - [sym_labeled_statement] = STATE(201), - [sym_expression_statement] = STATE(201), - [sym_if_statement] = STATE(201), - [sym_switch_statement] = STATE(201), - [sym_case_statement] = STATE(201), - [sym_while_statement] = STATE(201), - [sym_do_statement] = STATE(201), - [sym_for_statement] = STATE(201), - [sym_return_statement] = STATE(201), - [sym_break_statement] = STATE(201), - [sym_continue_statement] = STATE(201), - [sym_goto_statement] = STATE(201), - [sym_seh_try_statement] = STATE(201), - [sym_seh_leave_statement] = STATE(201), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1684), + [sym_attribute_declaration] = STATE(446), + [sym_compound_statement] = STATE(252), + [sym_attributed_statement] = STATE(256), + [sym_labeled_statement] = STATE(258), + [sym_expression_statement] = STATE(259), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(269), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(238), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(288), + [sym_return_statement] = STATE(295), + [sym_break_statement] = STATE(297), + [sym_continue_statement] = STATE(302), + [sym_goto_statement] = STATE(303), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(305), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63643,22 +63730,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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63689,49 +63776,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [444] = { - [sym_attribute_declaration] = STATE(440), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(195), - [sym_labeled_statement] = STATE(194), - [sym_expression_statement] = STATE(193), - [sym_if_statement] = STATE(161), - [sym_switch_statement] = STATE(192), - [sym_case_statement] = STATE(191), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(185), - [sym_return_statement] = STATE(162), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(183), - [sym_goto_statement] = STATE(182), - [sym_seh_try_statement] = STATE(176), - [sym_seh_leave_statement] = STATE(172), - [sym__expression] = STATE(1027), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1719), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1684), + [sym_attribute_declaration] = STATE(441), + [sym_compound_statement] = STATE(272), + [sym_attributed_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_case_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_goto_statement] = STATE(272), + [sym_seh_try_statement] = STATE(272), + [sym_seh_leave_statement] = STATE(272), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(441), + [sym_identifier] = ACTIONS(1532), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63739,22 +63826,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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63785,49 +63872,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [445] = { - [sym_attribute_declaration] = STATE(446), - [sym_compound_statement] = STATE(335), - [sym_attributed_statement] = STATE(334), - [sym_labeled_statement] = STATE(333), - [sym_expression_statement] = STATE(332), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(330), - [sym_case_statement] = STATE(328), - [sym_while_statement] = STATE(327), - [sym_do_statement] = STATE(326), - [sym_for_statement] = STATE(322), - [sym_return_statement] = STATE(321), - [sym_break_statement] = STATE(318), - [sym_continue_statement] = STATE(317), - [sym_goto_statement] = STATE(316), - [sym_seh_try_statement] = STATE(315), - [sym_seh_leave_statement] = STATE(314), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1853), + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(211), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym_seh_try_statement] = STATE(211), + [sym_seh_leave_statement] = STATE(211), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63835,22 +63922,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(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63881,49 +63968,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [446] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym_seh_try_statement] = STATE(340), - [sym_seh_leave_statement] = STATE(340), - [sym__expression] = STATE(1040), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1654), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1853), + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(272), + [sym_attributed_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_case_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_goto_statement] = STATE(272), + [sym_seh_try_statement] = STATE(272), + [sym_seh_leave_statement] = STATE(272), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63931,22 +64018,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(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63977,49 +64064,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [447] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(127), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_case_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym_seh_try_statement] = STATE(127), - [sym_seh_leave_statement] = STATE(127), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1785), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1682), + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(335), + [sym_attributed_statement] = STATE(335), + [sym_labeled_statement] = STATE(335), + [sym_expression_statement] = STATE(335), + [sym_if_statement] = STATE(335), + [sym_switch_statement] = STATE(335), + [sym_case_statement] = STATE(335), + [sym_while_statement] = STATE(335), + [sym_do_statement] = STATE(335), + [sym_for_statement] = STATE(335), + [sym_return_statement] = STATE(335), + [sym_break_statement] = STATE(335), + [sym_continue_statement] = STATE(335), + [sym_goto_statement] = STATE(335), + [sym_seh_try_statement] = STATE(335), + [sym_seh_leave_statement] = STATE(335), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1692), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64027,22 +64114,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(741), + [anon_sym_do] = ACTIONS(743), + [anon_sym_for] = ACTIONS(745), + [anon_sym_return] = ACTIONS(747), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_goto] = ACTIONS(753), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(757), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64073,49 +64160,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [448] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(1661), - [sym_attributed_statement] = STATE(1661), - [sym_labeled_statement] = STATE(1661), - [sym_expression_statement] = STATE(1661), - [sym_if_statement] = STATE(1661), - [sym_switch_statement] = STATE(1661), - [sym_case_statement] = STATE(1661), - [sym_while_statement] = STATE(1661), - [sym_do_statement] = STATE(1661), - [sym_for_statement] = STATE(1661), - [sym_return_statement] = STATE(1661), - [sym_break_statement] = STATE(1661), - [sym_continue_statement] = STATE(1661), - [sym_goto_statement] = STATE(1661), - [sym_seh_try_statement] = STATE(1661), - [sym_seh_leave_statement] = STATE(1661), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym_seh_try_statement] = STATE(196), + [sym_seh_leave_statement] = STATE(196), + [sym__expression] = STATE(1050), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1829), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64123,22 +64210,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64169,49 +64256,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [449] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(302), - [sym_attributed_statement] = STATE(302), - [sym_labeled_statement] = STATE(302), - [sym_expression_statement] = STATE(302), - [sym_if_statement] = STATE(302), - [sym_switch_statement] = STATE(302), - [sym_case_statement] = STATE(302), - [sym_while_statement] = STATE(302), - [sym_do_statement] = STATE(302), - [sym_for_statement] = STATE(302), - [sym_return_statement] = STATE(302), - [sym_break_statement] = STATE(302), - [sym_continue_statement] = STATE(302), - [sym_goto_statement] = STATE(302), - [sym_seh_try_statement] = STATE(302), - [sym_seh_leave_statement] = STATE(302), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1624), + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym_seh_try_statement] = STATE(246), + [sym_seh_leave_statement] = STATE(246), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1773), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(1532), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64219,8 +64306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -64233,8 +64320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64265,72 +64352,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [450] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(300), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(297), - [sym_expression_statement] = STATE(296), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(293), - [sym_case_statement] = STATE(292), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(289), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(287), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(285), - [sym_seh_try_statement] = STATE(231), - [sym_seh_leave_statement] = STATE(284), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1840), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1624), + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(267), + [sym_attributed_statement] = STATE(267), + [sym_labeled_statement] = STATE(267), + [sym_expression_statement] = STATE(267), + [sym_if_statement] = STATE(267), + [sym_switch_statement] = STATE(267), + [sym_case_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_do_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_return_statement] = STATE(267), + [sym_break_statement] = STATE(267), + [sym_continue_statement] = STATE(267), + [sym_goto_statement] = STATE(267), + [sym_seh_try_statement] = STATE(267), + [sym_seh_leave_statement] = STATE(267), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64361,49 +64448,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [451] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(302), - [sym_attributed_statement] = STATE(302), - [sym_labeled_statement] = STATE(302), - [sym_expression_statement] = STATE(302), - [sym_if_statement] = STATE(302), - [sym_switch_statement] = STATE(302), - [sym_case_statement] = STATE(302), - [sym_while_statement] = STATE(302), - [sym_do_statement] = STATE(302), - [sym_for_statement] = STATE(302), - [sym_return_statement] = STATE(302), - [sym_break_statement] = STATE(302), - [sym_continue_statement] = STATE(302), - [sym_goto_statement] = STATE(302), - [sym_seh_try_statement] = STATE(302), - [sym_seh_leave_statement] = STATE(302), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1702), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1676), + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(348), + [sym_attributed_statement] = STATE(348), + [sym_labeled_statement] = STATE(348), + [sym_expression_statement] = STATE(348), + [sym_if_statement] = STATE(348), + [sym_switch_statement] = STATE(348), + [sym_case_statement] = STATE(348), + [sym_while_statement] = STATE(348), + [sym_do_statement] = STATE(348), + [sym_for_statement] = STATE(348), + [sym_return_statement] = STATE(348), + [sym_break_statement] = STATE(348), + [sym_continue_statement] = STATE(348), + [sym_goto_statement] = STATE(348), + [sym_seh_try_statement] = STATE(348), + [sym_seh_leave_statement] = STATE(348), + [sym__expression] = STATE(1062), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1859), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64412,20 +64499,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -64457,194 +64544,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - }, - [454] = { [ts_builtin_sym_end] = ACTIONS(1494), [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), @@ -64738,6 +64731,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, + [454] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + }, [455] = { [ts_builtin_sym_end] = ACTIONS(1490), [sym_identifier] = ACTIONS(1488), @@ -64832,101 +64919,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [456] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [456] = { + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [459] = { + [ts_builtin_sym_end] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), + [aux_sym_preproc_include_token1] = ACTIONS(1857), + [aux_sym_preproc_def_token1] = ACTIONS(1857), + [aux_sym_preproc_if_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [sym_preproc_directive] = ACTIONS(1857), + [anon_sym_LPAREN2] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym___extension__] = ACTIONS(1857), + [anon_sym_typedef] = ACTIONS(1857), + [anon_sym_extern] = ACTIONS(1857), + [anon_sym___attribute__] = ACTIONS(1857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1855), + [anon_sym___declspec] = ACTIONS(1857), + [anon_sym___cdecl] = ACTIONS(1857), + [anon_sym___clrcall] = ACTIONS(1857), + [anon_sym___stdcall] = ACTIONS(1857), + [anon_sym___fastcall] = ACTIONS(1857), + [anon_sym___thiscall] = ACTIONS(1857), + [anon_sym___vectorcall] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_signed] = ACTIONS(1857), + [anon_sym_unsigned] = ACTIONS(1857), + [anon_sym_long] = ACTIONS(1857), + [anon_sym_short] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_auto] = ACTIONS(1857), + [anon_sym_register] = ACTIONS(1857), + [anon_sym_inline] = ACTIONS(1857), + [anon_sym___inline] = ACTIONS(1857), + [anon_sym___inline__] = ACTIONS(1857), + [anon_sym___forceinline] = ACTIONS(1857), + [anon_sym_thread_local] = ACTIONS(1857), + [anon_sym___thread] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_constexpr] = ACTIONS(1857), + [anon_sym_volatile] = ACTIONS(1857), + [anon_sym_restrict] = ACTIONS(1857), + [anon_sym___restrict__] = ACTIONS(1857), + [anon_sym__Atomic] = ACTIONS(1857), + [anon_sym__Noreturn] = ACTIONS(1857), + [anon_sym_noreturn] = ACTIONS(1857), + [sym_primitive_type] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_goto] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1857), + [anon_sym___alignof__] = ACTIONS(1857), + [anon_sym___alignof] = ACTIONS(1857), + [anon_sym__alignof] = ACTIONS(1857), + [anon_sym_alignof] = ACTIONS(1857), + [anon_sym__Alignof] = ACTIONS(1857), + [anon_sym_offsetof] = ACTIONS(1857), + [anon_sym__Generic] = ACTIONS(1857), + [anon_sym_asm] = ACTIONS(1857), + [anon_sym___asm__] = ACTIONS(1857), + [sym_number_literal] = ACTIONS(1855), + [anon_sym_L_SQUOTE] = ACTIONS(1855), + [anon_sym_u_SQUOTE] = ACTIONS(1855), + [anon_sym_U_SQUOTE] = ACTIONS(1855), + [anon_sym_u8_SQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_L_DQUOTE] = ACTIONS(1855), + [anon_sym_u_DQUOTE] = ACTIONS(1855), + [anon_sym_U_DQUOTE] = ACTIONS(1855), + [anon_sym_u8_DQUOTE] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym_true] = ACTIONS(1857), + [sym_false] = ACTIONS(1857), + [anon_sym_NULL] = ACTIONS(1857), + [anon_sym_nullptr] = ACTIONS(1857), + [sym_comment] = ACTIONS(3), + }, + [460] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [461] = { + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [462] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [457] = { + [463] = { [ts_builtin_sym_end] = ACTIONS(1482), [sym_identifier] = ACTIONS(1480), [aux_sym_preproc_include_token1] = ACTIONS(1480), @@ -65020,7 +65671,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [458] = { + [464] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [466] = { [ts_builtin_sym_end] = ACTIONS(1506), [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), @@ -65114,665 +65953,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [459] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [aux_sym_preproc_include_token1] = ACTIONS(1857), - [aux_sym_preproc_def_token1] = ACTIONS(1857), - [aux_sym_preproc_if_token1] = ACTIONS(1857), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), - [sym_preproc_directive] = ACTIONS(1857), - [anon_sym_LPAREN2] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1857), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym___extension__] = ACTIONS(1857), - [anon_sym_typedef] = ACTIONS(1857), - [anon_sym_extern] = ACTIONS(1857), - [anon_sym___attribute__] = ACTIONS(1857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1855), - [anon_sym___declspec] = ACTIONS(1857), - [anon_sym___cdecl] = ACTIONS(1857), - [anon_sym___clrcall] = ACTIONS(1857), - [anon_sym___stdcall] = ACTIONS(1857), - [anon_sym___fastcall] = ACTIONS(1857), - [anon_sym___thiscall] = ACTIONS(1857), - [anon_sym___vectorcall] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1857), - [anon_sym_unsigned] = ACTIONS(1857), - [anon_sym_long] = ACTIONS(1857), - [anon_sym_short] = ACTIONS(1857), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_auto] = ACTIONS(1857), - [anon_sym_register] = ACTIONS(1857), - [anon_sym_inline] = ACTIONS(1857), - [anon_sym___inline] = ACTIONS(1857), - [anon_sym___inline__] = ACTIONS(1857), - [anon_sym___forceinline] = ACTIONS(1857), - [anon_sym_thread_local] = ACTIONS(1857), - [anon_sym___thread] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_constexpr] = ACTIONS(1857), - [anon_sym_volatile] = ACTIONS(1857), - [anon_sym_restrict] = ACTIONS(1857), - [anon_sym___restrict__] = ACTIONS(1857), - [anon_sym__Atomic] = ACTIONS(1857), - [anon_sym__Noreturn] = ACTIONS(1857), - [anon_sym_noreturn] = ACTIONS(1857), - [sym_primitive_type] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_union] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_switch] = ACTIONS(1857), - [anon_sym_case] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_goto] = ACTIONS(1857), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_sizeof] = ACTIONS(1857), - [anon_sym___alignof__] = ACTIONS(1857), - [anon_sym___alignof] = ACTIONS(1857), - [anon_sym__alignof] = ACTIONS(1857), - [anon_sym_alignof] = ACTIONS(1857), - [anon_sym__Alignof] = ACTIONS(1857), - [anon_sym_offsetof] = ACTIONS(1857), - [anon_sym__Generic] = ACTIONS(1857), - [anon_sym_asm] = ACTIONS(1857), - [anon_sym___asm__] = ACTIONS(1857), - [sym_number_literal] = ACTIONS(1855), - [anon_sym_L_SQUOTE] = ACTIONS(1855), - [anon_sym_u_SQUOTE] = ACTIONS(1855), - [anon_sym_U_SQUOTE] = ACTIONS(1855), - [anon_sym_u8_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_L_DQUOTE] = ACTIONS(1855), - [anon_sym_u_DQUOTE] = ACTIONS(1855), - [anon_sym_U_DQUOTE] = ACTIONS(1855), - [anon_sym_u8_DQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_true] = ACTIONS(1857), - [sym_false] = ACTIONS(1857), - [anon_sym_NULL] = ACTIONS(1857), - [anon_sym_nullptr] = ACTIONS(1857), - [sym_comment] = ACTIONS(3), - }, - [464] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - }, - [465] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1420), - [aux_sym_preproc_include_token1] = ACTIONS(1420), - [aux_sym_preproc_def_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym___extension__] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym___attribute__] = ACTIONS(1420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), - [anon_sym___declspec] = ACTIONS(1420), - [anon_sym___cdecl] = ACTIONS(1420), - [anon_sym___clrcall] = ACTIONS(1420), - [anon_sym___stdcall] = ACTIONS(1420), - [anon_sym___fastcall] = ACTIONS(1420), - [anon_sym___thiscall] = ACTIONS(1420), - [anon_sym___vectorcall] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1420), - [anon_sym_unsigned] = ACTIONS(1420), - [anon_sym_long] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_auto] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym___inline] = ACTIONS(1420), - [anon_sym___inline__] = ACTIONS(1420), - [anon_sym___forceinline] = ACTIONS(1420), - [anon_sym_thread_local] = ACTIONS(1420), - [anon_sym___thread] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_constexpr] = ACTIONS(1420), - [anon_sym_volatile] = ACTIONS(1420), - [anon_sym_restrict] = ACTIONS(1420), - [anon_sym___restrict__] = ACTIONS(1420), - [anon_sym__Atomic] = ACTIONS(1420), - [anon_sym__Noreturn] = ACTIONS(1420), - [anon_sym_noreturn] = ACTIONS(1420), - [sym_primitive_type] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_goto] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1420), - [anon_sym___alignof__] = ACTIONS(1420), - [anon_sym___alignof] = ACTIONS(1420), - [anon_sym__alignof] = ACTIONS(1420), - [anon_sym_alignof] = ACTIONS(1420), - [anon_sym__Alignof] = ACTIONS(1420), - [anon_sym_offsetof] = ACTIONS(1420), - [anon_sym__Generic] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym___asm__] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(1422), - [anon_sym_L_SQUOTE] = ACTIONS(1422), - [anon_sym_u_SQUOTE] = ACTIONS(1422), - [anon_sym_U_SQUOTE] = ACTIONS(1422), - [anon_sym_u8_SQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(1422), - [anon_sym_u_DQUOTE] = ACTIONS(1422), - [anon_sym_U_DQUOTE] = ACTIONS(1422), - [anon_sym_u8_DQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [anon_sym_NULL] = ACTIONS(1420), - [anon_sym_nullptr] = ACTIONS(1420), + [467] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [466] = { + [468] = { [ts_builtin_sym_end] = ACTIONS(1404), [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), @@ -65866,101 +66141,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [469] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [468] = { + [470] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [474] = { [ts_builtin_sym_end] = ACTIONS(1859), [sym_identifier] = ACTIONS(1861), [aux_sym_preproc_include_token1] = ACTIONS(1861), @@ -66054,971 +66705,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1861), [sym_comment] = ACTIONS(3), }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - }, - [473] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [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(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [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(1418), - [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), - [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(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [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), - [sym_number_literal] = ACTIONS(1418), - [anon_sym_L_SQUOTE] = ACTIONS(1418), - [anon_sym_u_SQUOTE] = ACTIONS(1418), - [anon_sym_U_SQUOTE] = ACTIONS(1418), - [anon_sym_u8_SQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, [479] = { - [sym__expression] = STATE(847), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(758), - [sym_call_expression] = STATE(758), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(758), - [sym_initializer_list] = STATE(755), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(899), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(798), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(798), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_initializer_list] = STATE(806), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym_identifier] = ACTIONS(1514), [anon_sym_LPAREN2] = ACTIONS(1516), [anon_sym_BANG] = ACTIONS(1863), @@ -67088,40 +67175,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [480] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1875), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1744), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67177,40 +67264,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [481] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1789), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1851), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67266,40 +67353,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [482] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1726), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1743), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67355,40 +67442,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [483] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1725), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1796), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67444,40 +67531,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [484] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1817), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1710), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67533,40 +67620,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [485] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1757), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1874), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67622,40 +67709,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [486] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1833), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1871), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67711,40 +67798,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [487] = { - [sym_type_qualifier] = STATE(1078), - [sym__type_specifier] = STATE(1099), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(758), - [sym_comma_expression] = STATE(1727), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(1841), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__type_definition_type_repeat1] = STATE(1078), - [aux_sym_sized_type_specifier_repeat1] = STATE(1114), + [sym_type_qualifier] = STATE(1088), + [sym__type_specifier] = STATE(1132), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(798), + [sym_comma_expression] = STATE(1868), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_type_descriptor] = STATE(1866), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [aux_sym_sized_type_specifier_repeat1] = STATE(1142), [sym_identifier] = ACTIONS(1869), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -67976,30 +68063,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [490] = { - [sym__expression] = STATE(756), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_initializer_list] = STATE(755), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(808), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(806), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym_identifier] = ACTIONS(1883), [anon_sym_COMMA] = ACTIONS(1516), [anon_sym_RPAREN] = ACTIONS(1516), @@ -68063,7 +68150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [491] = { - [sym_else_clause] = STATE(310), + [sym_else_clause] = STATE(340), [sym_identifier] = ACTIONS(1292), [anon_sym_LPAREN2] = ACTIONS(1294), [anon_sym_BANG] = ACTIONS(1294), @@ -68230,30 +68317,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [493] = { - [sym__expression] = STATE(847), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_initializer_list] = STATE(755), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), + [sym__expression] = STATE(899), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(806), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), [sym_identifier] = ACTIONS(1899), [anon_sym_LPAREN2] = ACTIONS(1516), [anon_sym_BANG] = ACTIONS(1901), @@ -68312,51 +68399,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [494] = { - [sym_type_qualifier] = STATE(497), - [sym__expression] = STATE(1059), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(497), + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1927), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [495] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [496] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1927), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [497] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1933), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [498] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [499] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1937), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [500] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [501] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1937), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [502] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1939), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [503] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1933), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [504] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [505] = { + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1074), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_ms_based_modifier] = STATE(1345), + [sym_ms_call_modifier] = STATE(1845), + [sym__declarator] = STATE(1367), + [sym__abstract_declarator] = STATE(1431), + [sym_parenthesized_declarator] = STATE(1320), + [sym_abstract_parenthesized_declarator] = STATE(1401), + [sym_attributed_declarator] = STATE(1320), + [sym_pointer_declarator] = STATE(1320), + [sym_abstract_pointer_declarator] = STATE(1401), + [sym_function_declarator] = STATE(1320), + [sym_abstract_function_declarator] = STATE(1401), + [sym_array_declarator] = STATE(1320), + [sym_abstract_array_declarator] = STATE(1401), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym_variadic_parameter] = STATE(1487), + [sym_parameter_list] = STATE(1387), + [sym_parameter_declaration] = STATE(1487), + [sym_macro_type_specifier] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(1951), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [506] = { + [sym_string_literal] = STATE(678), + [sym_identifier] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___based] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PERCENT_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_LT_LT_EQ] = ACTIONS(1929), + [anon_sym_GT_GT_EQ] = ACTIONS(1929), + [anon_sym_AMP_EQ] = ACTIONS(1929), + [anon_sym_CARET_EQ] = ACTIONS(1929), + [anon_sym_PIPE_EQ] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [507] = { + [sym_type_qualifier] = STATE(512), + [sym__expression] = STATE(1099), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(512), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68384,52 +69482,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [495] = { - [sym_type_qualifier] = STATE(500), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(500), + [508] = { + [sym_type_qualifier] = STATE(514), + [sym__expression] = STATE(1096), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(514), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68457,52 +69555,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym_type_qualifier] = STATE(498), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(498), + [509] = { + [sym_type_qualifier] = STATE(728), + [sym__expression] = STATE(1079), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(728), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68530,52 +69628,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [497] = { - [sym_type_qualifier] = STATE(712), - [sym__expression] = STATE(1055), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(712), + [510] = { + [sym_type_qualifier] = STATE(728), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(728), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68603,52 +69701,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [498] = { - [sym_type_qualifier] = STATE(712), - [sym__expression] = STATE(1056), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(712), + [511] = { + [sym_type_qualifier] = STATE(510), + [sym__expression] = STATE(1113), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(510), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1931), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68676,52 +69774,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [499] = { - [sym_type_qualifier] = STATE(712), - [sym__expression] = STATE(1070), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(712), + [512] = { + [sym_type_qualifier] = STATE(728), + [sym__expression] = STATE(1077), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(728), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1935), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68749,52 +69847,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [500] = { - [sym_type_qualifier] = STATE(712), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(712), + [513] = { + [sym_type_qualifier] = STATE(728), + [sym__expression] = STATE(1112), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(728), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68822,52 +69920,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [501] = { - [sym_type_qualifier] = STATE(503), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(503), + [514] = { + [sym_type_qualifier] = STATE(728), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(728), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68895,52 +69993,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [502] = { - [sym_type_qualifier] = STATE(499), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(499), + [515] = { + [sym_type_qualifier] = STATE(509), + [sym__expression] = STATE(1105), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(509), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -68968,52 +70066,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [503] = { - [sym_type_qualifier] = STATE(712), - [sym__expression] = STATE(1067), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym__type_definition_type_repeat1] = STATE(712), + [516] = { + [sym_type_qualifier] = STATE(513), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym__type_definition_type_repeat1] = STATE(513), [sym_identifier] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_BANG] = ACTIONS(1903), [anon_sym_TILDE] = ACTIONS(1903), [anon_sym_DASH] = ACTIONS(1901), [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_constexpr] = ACTIONS(1961), + [anon_sym_volatile] = ACTIONS(1961), + [anon_sym_restrict] = ACTIONS(1961), + [anon_sym___restrict__] = ACTIONS(1961), + [anon_sym__Atomic] = ACTIONS(1961), + [anon_sym__Noreturn] = ACTIONS(1961), + [anon_sym_noreturn] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), [anon_sym_sizeof] = ACTIONS(1905), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -69037,761 +70135,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_true] = ACTIONS(159), [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [504] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1972), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [505] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1972), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [506] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [507] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [508] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [509] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [510] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [511] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [512] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [513] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1987), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [514] = { - [sym__expression] = STATE(1000), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_initializer_list] = STATE(1457), - [sym_initializer_pair] = STATE(1457), - [sym_subscript_designator] = STATE(1364), - [sym_field_designator] = STATE(1364), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1364), + [517] = { + [sym__expression] = STATE(1022), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(1502), + [sym_initializer_pair] = STATE(1502), + [sym_subscript_designator] = STATE(1379), + [sym_field_designator] = STATE(1379), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_initializer_pair_repeat1] = STATE(1379), [sym_identifier] = ACTIONS(1883), - [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_COMMA] = ACTIONS(2003), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69800,8 +70178,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_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2007), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69814,7 +70192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_DOT] = ACTIONS(2009), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -69832,186 +70210,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [515] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [516] = { - [sym_string_literal] = STATE(676), - [sym_identifier] = ACTIONS(1955), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym___attribute__] = ACTIONS(1955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), - [anon_sym___declspec] = ACTIONS(1955), - [anon_sym___based] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym___inline] = ACTIONS(1955), - [anon_sym___inline__] = ACTIONS(1955), - [anon_sym___forceinline] = ACTIONS(1955), - [anon_sym_thread_local] = ACTIONS(1955), - [anon_sym___thread] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_constexpr] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym___restrict__] = ACTIONS(1955), - [anon_sym__Atomic] = ACTIONS(1955), - [anon_sym__Noreturn] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1987), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1974), - [anon_sym_SLASH_EQ] = ACTIONS(1974), - [anon_sym_PERCENT_EQ] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(1974), - [anon_sym_DASH_EQ] = ACTIONS(1974), - [anon_sym_LT_LT_EQ] = ACTIONS(1974), - [anon_sym_GT_GT_EQ] = ACTIONS(1974), - [anon_sym_AMP_EQ] = ACTIONS(1974), - [anon_sym_CARET_EQ] = ACTIONS(1974), - [anon_sym_PIPE_EQ] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [517] = { - [sym_preproc_def] = STATE(535), - [sym_preproc_function_def] = STATE(535), - [sym_preproc_call] = STATE(535), - [sym_preproc_elifdef] = STATE(1824), - [sym_preproc_if_in_field_declaration_list] = STATE(535), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), - [sym_preproc_else_in_field_declaration_list] = STATE(1824), - [sym_preproc_elif_in_field_declaration_list] = STATE(1824), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(535), - [sym_field_declaration] = STATE(535), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), - [aux_sym_preproc_if_token2] = ACTIONS(2003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [518] = { + [sym_preproc_def] = STATE(539), + [sym_preproc_function_def] = STATE(539), + [sym_preproc_call] = STATE(539), + [sym_preproc_elifdef] = STATE(1886), + [sym_preproc_if_in_field_declaration_list] = STATE(539), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(539), + [sym_preproc_else_in_field_declaration_list] = STATE(1886), + [sym_preproc_elif_in_field_declaration_list] = STATE(1886), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(539), + [sym_field_declaration] = STATE(539), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(539), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), + [aux_sym_preproc_if_token2] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [aux_sym_preproc_elifdef_token1] = ACTIONS(117), [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -70044,44 +70280,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [518] = { + [519] = { [sym_preproc_def] = STATE(527), [sym_preproc_function_def] = STATE(527), [sym_preproc_call] = STATE(527), - [sym_preproc_elifdef] = STATE(1683), + [sym_preproc_elifdef] = STATE(1786), [sym_preproc_if_in_field_declaration_list] = STATE(527), [sym_preproc_ifdef_in_field_declaration_list] = STATE(527), - [sym_preproc_else_in_field_declaration_list] = STATE(1683), - [sym_preproc_elif_in_field_declaration_list] = STATE(1683), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), + [sym_preproc_else_in_field_declaration_list] = STATE(1786), + [sym_preproc_elif_in_field_declaration_list] = STATE(1786), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), [sym__field_declaration_list_item] = STATE(527), [sym_field_declaration] = STATE(527), - [sym_macro_type_specifier] = STATE(925), + [sym_macro_type_specifier] = STATE(811), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(527), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), - [aux_sym_preproc_if_token2] = ACTIONS(2013), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), + [aux_sym_preproc_if_token2] = ACTIONS(2027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [aux_sym_preproc_elifdef_token1] = ACTIONS(117), [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -70114,105 +70350,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [519] = { - [sym__expression] = STATE(1017), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_initializer_list] = STATE(1628), - [sym_initializer_pair] = STATE(1628), - [sym_subscript_designator] = STATE(1364), - [sym_field_designator] = STATE(1364), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1364), - [sym_identifier] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1995), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, [520] = { - [sym__expression] = STATE(1017), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_initializer_list] = STATE(1628), - [sym_initializer_pair] = STATE(1628), - [sym_subscript_designator] = STATE(1364), - [sym_field_designator] = STATE(1364), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1364), + [sym__expression] = STATE(1049), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(1624), + [sym_initializer_pair] = STATE(1624), + [sym_subscript_designator] = STATE(1379), + [sym_field_designator] = STATE(1379), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_initializer_pair_repeat1] = STATE(1379), [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -70222,8 +70388,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_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2007), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -70236,7 +70402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_DOT] = ACTIONS(2009), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -70255,43 +70421,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [521] = { - [sym_preproc_def] = STATE(535), - [sym_preproc_function_def] = STATE(535), - [sym_preproc_call] = STATE(535), - [sym_preproc_elifdef] = STATE(1740), - [sym_preproc_if_in_field_declaration_list] = STATE(535), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), - [sym_preproc_else_in_field_declaration_list] = STATE(1740), - [sym_preproc_elif_in_field_declaration_list] = STATE(1740), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(535), - [sym_field_declaration] = STATE(535), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), - [aux_sym_preproc_if_token2] = ACTIONS(2019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [sym_preproc_def] = STATE(539), + [sym_preproc_function_def] = STATE(539), + [sym_preproc_call] = STATE(539), + [sym_preproc_elifdef] = STATE(1737), + [sym_preproc_if_in_field_declaration_list] = STATE(539), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(539), + [sym_preproc_else_in_field_declaration_list] = STATE(1737), + [sym_preproc_elif_in_field_declaration_list] = STATE(1737), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(539), + [sym_field_declaration] = STATE(539), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(539), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), + [aux_sym_preproc_if_token2] = ACTIONS(2031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [aux_sym_preproc_elifdef_token1] = ACTIONS(117), [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -70325,52 +70491,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [522] = { - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1181), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_ms_based_modifier] = STATE(1698), - [sym__declarator] = STATE(1351), - [sym__abstract_declarator] = STATE(1438), - [sym_parenthesized_declarator] = STATE(1296), - [sym_abstract_parenthesized_declarator] = STATE(1371), - [sym_attributed_declarator] = STATE(1296), - [sym_pointer_declarator] = STATE(1296), - [sym_abstract_pointer_declarator] = STATE(1371), - [sym_function_declarator] = STATE(1296), - [sym_abstract_function_declarator] = STATE(1371), - [sym_array_declarator] = STATE(1296), - [sym_abstract_array_declarator] = STATE(1371), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym_variadic_parameter] = STATE(1486), - [sym_parameter_list] = STATE(1385), - [sym_parameter_declaration] = STATE(1486), - [sym_macro_type_specifier] = STATE(925), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_LPAREN2] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2029), + [sym_preproc_def] = STATE(521), + [sym_preproc_function_def] = STATE(521), + [sym_preproc_call] = STATE(521), + [sym_preproc_elifdef] = STATE(1748), + [sym_preproc_if_in_field_declaration_list] = STATE(521), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), + [sym_preproc_else_in_field_declaration_list] = STATE(1748), + [sym_preproc_elif_in_field_declaration_list] = STATE(1748), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(521), + [sym_field_declaration] = STATE(521), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), + [aux_sym_preproc_if_token2] = ACTIONS(2033), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token2] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(2031), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2033), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -70395,43 +70561,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [523] = { - [sym_preproc_def] = STATE(517), - [sym_preproc_function_def] = STATE(517), - [sym_preproc_call] = STATE(517), - [sym_preproc_elifdef] = STATE(1835), - [sym_preproc_if_in_field_declaration_list] = STATE(517), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(517), - [sym_preproc_else_in_field_declaration_list] = STATE(1835), - [sym_preproc_elif_in_field_declaration_list] = STATE(1835), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(517), - [sym_field_declaration] = STATE(517), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(517), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), + [sym_preproc_def] = STATE(518), + [sym_preproc_function_def] = STATE(518), + [sym_preproc_call] = STATE(518), + [sym_preproc_elifdef] = STATE(1721), + [sym_preproc_if_in_field_declaration_list] = STATE(518), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(518), + [sym_preproc_else_in_field_declaration_list] = STATE(1721), + [sym_preproc_elif_in_field_declaration_list] = STATE(1721), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(518), + [sym_field_declaration] = STATE(518), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(518), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), [aux_sym_preproc_if_token2] = ACTIONS(2035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [aux_sym_preproc_elifdef_token1] = ACTIONS(117), [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -70465,113 +70631,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [524] = { - [sym_preproc_def] = STATE(535), - [sym_preproc_function_def] = STATE(535), - [sym_preproc_call] = STATE(535), - [sym_preproc_elifdef] = STATE(1748), - [sym_preproc_if_in_field_declaration_list] = STATE(535), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), - [sym_preproc_else_in_field_declaration_list] = STATE(1748), - [sym_preproc_elif_in_field_declaration_list] = STATE(1748), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(535), - [sym_field_declaration] = STATE(535), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), - [aux_sym_preproc_if_token2] = ACTIONS(2037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [sym__expression] = STATE(1049), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(1624), + [sym_initializer_pair] = STATE(1624), + [sym_subscript_designator] = STATE(1379), + [sym_field_designator] = STATE(1379), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_initializer_pair_repeat1] = STATE(1379), + [sym_identifier] = ACTIONS(1883), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [525] = { - [sym_preproc_def] = STATE(524), - [sym_preproc_function_def] = STATE(524), - [sym_preproc_call] = STATE(524), - [sym_preproc_elifdef] = STATE(1680), - [sym_preproc_if_in_field_declaration_list] = STATE(524), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(524), - [sym_preproc_else_in_field_declaration_list] = STATE(1680), - [sym_preproc_elif_in_field_declaration_list] = STATE(1680), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(524), - [sym_field_declaration] = STATE(524), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(524), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), + [sym_preproc_def] = STATE(526), + [sym_preproc_function_def] = STATE(526), + [sym_preproc_call] = STATE(526), + [sym_preproc_elifdef] = STATE(1649), + [sym_preproc_if_in_field_declaration_list] = STATE(526), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(526), + [sym_preproc_else_in_field_declaration_list] = STATE(1649), + [sym_preproc_elif_in_field_declaration_list] = STATE(1649), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(526), + [sym_field_declaration] = STATE(526), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(526), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), [aux_sym_preproc_if_token2] = ACTIONS(2039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [aux_sym_preproc_elifdef_token1] = ACTIONS(117), [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -70605,43 +70771,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [526] = { - [sym_preproc_def] = STATE(521), - [sym_preproc_function_def] = STATE(521), - [sym_preproc_call] = STATE(521), - [sym_preproc_elifdef] = STATE(1744), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_preproc_else_in_field_declaration_list] = STATE(1744), - [sym_preproc_elif_in_field_declaration_list] = STATE(1744), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(521), - [sym_field_declaration] = STATE(521), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), + [sym_preproc_def] = STATE(539), + [sym_preproc_function_def] = STATE(539), + [sym_preproc_call] = STATE(539), + [sym_preproc_elifdef] = STATE(1658), + [sym_preproc_if_in_field_declaration_list] = STATE(539), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(539), + [sym_preproc_else_in_field_declaration_list] = STATE(1658), + [sym_preproc_elif_in_field_declaration_list] = STATE(1658), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(539), + [sym_field_declaration] = STATE(539), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(539), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), [aux_sym_preproc_if_token2] = ACTIONS(2041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [aux_sym_preproc_elifdef_token1] = ACTIONS(117), [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -70675,43 +70841,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [527] = { - [sym_preproc_def] = STATE(535), - [sym_preproc_function_def] = STATE(535), - [sym_preproc_call] = STATE(535), - [sym_preproc_elifdef] = STATE(1674), - [sym_preproc_if_in_field_declaration_list] = STATE(535), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), - [sym_preproc_else_in_field_declaration_list] = STATE(1674), - [sym_preproc_elif_in_field_declaration_list] = STATE(1674), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(535), - [sym_field_declaration] = STATE(535), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(1999), - [aux_sym_preproc_if_token1] = ACTIONS(2001), + [sym_preproc_def] = STATE(539), + [sym_preproc_function_def] = STATE(539), + [sym_preproc_call] = STATE(539), + [sym_preproc_elifdef] = STATE(1761), + [sym_preproc_if_in_field_declaration_list] = STATE(539), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(539), + [sym_preproc_else_in_field_declaration_list] = STATE(1761), + [sym_preproc_elif_in_field_declaration_list] = STATE(1761), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(539), + [sym_field_declaration] = STATE(539), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(539), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), + [aux_sym_preproc_def_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token1] = ACTIONS(2015), [aux_sym_preproc_if_token2] = ACTIONS(2043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2005), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2019), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [aux_sym_preproc_elifdef_token1] = ACTIONS(117), [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2011), + [sym_preproc_directive] = ACTIONS(2025), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -70745,34 +70911,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [528] = { - [sym__expression] = STATE(1017), - [sym__expression_not_binary] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(783), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(783), - [sym_initializer_list] = STATE(1628), - [sym_initializer_pair] = STATE(1628), - [sym_subscript_designator] = STATE(1364), - [sym_field_designator] = STATE(1364), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(705), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1364), + [sym__expression] = STATE(1049), + [sym__expression_not_binary] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_update_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_alignof_expression] = STATE(798), + [sym_offsetof_expression] = STATE(798), + [sym_generic_expression] = STATE(798), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(798), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(1624), + [sym_initializer_pair] = STATE(1624), + [sym_subscript_designator] = STATE(1379), + [sym_field_designator] = STATE(1379), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(715), + [sym_null] = STATE(798), + [aux_sym_initializer_pair_repeat1] = STATE(1379), [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -70782,7 +70948,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_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(2007), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -70795,7 +70961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_DOT] = ACTIONS(2009), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -70814,39 +70980,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [529] = { - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_field_declaration_list] = STATE(541), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), - [sym_preproc_else_in_field_declaration_list] = STATE(1850), - [sym_preproc_elif_in_field_declaration_list] = STATE(1850), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(541), - [sym_field_declaration] = STATE(541), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [sym_preproc_def] = STATE(536), + [sym_preproc_function_def] = STATE(536), + [sym_preproc_call] = STATE(536), + [sym_preproc_if_in_field_declaration_list] = STATE(536), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), + [sym_preproc_else_in_field_declaration_list] = STATE(1762), + [sym_preproc_elif_in_field_declaration_list] = STATE(1762), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(536), + [sym_field_declaration] = STATE(536), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), [aux_sym_preproc_if_token2] = ACTIONS(2049), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -70881,39 +71047,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [530] = { - [sym_preproc_def] = STATE(534), - [sym_preproc_function_def] = STATE(534), - [sym_preproc_call] = STATE(534), - [sym_preproc_if_in_field_declaration_list] = STATE(534), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), - [sym_preproc_else_in_field_declaration_list] = STATE(1742), - [sym_preproc_elif_in_field_declaration_list] = STATE(1742), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(534), - [sym_field_declaration] = STATE(534), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [sym_preproc_def] = STATE(540), + [sym_preproc_function_def] = STATE(540), + [sym_preproc_call] = STATE(540), + [sym_preproc_if_in_field_declaration_list] = STATE(540), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), + [sym_preproc_else_in_field_declaration_list] = STATE(1819), + [sym_preproc_elif_in_field_declaration_list] = STATE(1819), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(540), + [sym_field_declaration] = STATE(540), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), [aux_sym_preproc_if_token2] = ACTIONS(2055), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -70948,39 +71114,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [531] = { - [sym_preproc_def] = STATE(536), - [sym_preproc_function_def] = STATE(536), - [sym_preproc_call] = STATE(536), - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym_preproc_else_in_field_declaration_list] = STATE(1675), - [sym_preproc_elif_in_field_declaration_list] = STATE(1675), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [sym_preproc_def] = STATE(540), + [sym_preproc_function_def] = STATE(540), + [sym_preproc_call] = STATE(540), + [sym_preproc_if_in_field_declaration_list] = STATE(540), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), + [sym_preproc_else_in_field_declaration_list] = STATE(1884), + [sym_preproc_elif_in_field_declaration_list] = STATE(1884), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(540), + [sym_field_declaration] = STATE(540), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), [aux_sym_preproc_if_token2] = ACTIONS(2057), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71015,39 +71181,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [532] = { - [sym_preproc_def] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_preproc_if_in_field_declaration_list] = STATE(533), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(533), - [sym_preproc_else_in_field_declaration_list] = STATE(1829), - [sym_preproc_elif_in_field_declaration_list] = STATE(1829), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(533), - [sym_field_declaration] = STATE(533), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [sym_preproc_def] = STATE(538), + [sym_preproc_function_def] = STATE(538), + [sym_preproc_call] = STATE(538), + [sym_preproc_if_in_field_declaration_list] = STATE(538), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(538), + [sym_preproc_else_in_field_declaration_list] = STATE(1745), + [sym_preproc_elif_in_field_declaration_list] = STATE(1745), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(538), + [sym_field_declaration] = STATE(538), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(538), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), [aux_sym_preproc_if_token2] = ACTIONS(2059), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71082,39 +71248,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [533] = { - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_field_declaration_list] = STATE(541), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), - [sym_preproc_else_in_field_declaration_list] = STATE(1820), - [sym_preproc_elif_in_field_declaration_list] = STATE(1820), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(541), - [sym_field_declaration] = STATE(541), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [sym_preproc_def] = STATE(530), + [sym_preproc_function_def] = STATE(530), + [sym_preproc_call] = STATE(530), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_preproc_else_in_field_declaration_list] = STATE(1659), + [sym_preproc_elif_in_field_declaration_list] = STATE(1659), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(530), + [sym_field_declaration] = STATE(530), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), [aux_sym_preproc_if_token2] = ACTIONS(2061), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71149,39 +71315,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [534] = { - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_field_declaration_list] = STATE(541), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), - [sym_preproc_else_in_field_declaration_list] = STATE(1739), - [sym_preproc_elif_in_field_declaration_list] = STATE(1739), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(541), - [sym_field_declaration] = STATE(541), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [sym_preproc_def] = STATE(531), + [sym_preproc_function_def] = STATE(531), + [sym_preproc_call] = STATE(531), + [sym_preproc_if_in_field_declaration_list] = STATE(531), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(531), + [sym_preproc_else_in_field_declaration_list] = STATE(1892), + [sym_preproc_elif_in_field_declaration_list] = STATE(1892), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(531), + [sym_field_declaration] = STATE(531), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(531), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), [aux_sym_preproc_if_token2] = ACTIONS(2063), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71216,106 +71382,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [535] = { - [sym_preproc_def] = STATE(535), - [sym_preproc_function_def] = STATE(535), - [sym_preproc_call] = STATE(535), - [sym_preproc_if_in_field_declaration_list] = STATE(535), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(535), - [sym_field_declaration] = STATE(535), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(2065), - [aux_sym_preproc_def_token1] = ACTIONS(2068), - [aux_sym_preproc_if_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token2] = ACTIONS(2074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2076), - [aux_sym_preproc_else_token1] = ACTIONS(2074), - [aux_sym_preproc_elif_token1] = ACTIONS(2074), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2074), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2074), - [sym_preproc_directive] = ACTIONS(2079), - [anon_sym___extension__] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym___attribute__] = ACTIONS(2088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2091), - [anon_sym___declspec] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(2097), - [anon_sym_unsigned] = ACTIONS(2097), - [anon_sym_long] = ACTIONS(2097), - [anon_sym_short] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_auto] = ACTIONS(2085), - [anon_sym_register] = ACTIONS(2085), - [anon_sym_inline] = ACTIONS(2085), - [anon_sym___inline] = ACTIONS(2085), - [anon_sym___inline__] = ACTIONS(2085), - [anon_sym___forceinline] = ACTIONS(2085), - [anon_sym_thread_local] = ACTIONS(2085), - [anon_sym___thread] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_constexpr] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym___restrict__] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym__Noreturn] = ACTIONS(2082), - [anon_sym_noreturn] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2109), - [sym_comment] = ACTIONS(3), - }, - [536] = { - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_field_declaration_list] = STATE(541), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), - [sym_preproc_else_in_field_declaration_list] = STATE(1672), - [sym_preproc_elif_in_field_declaration_list] = STATE(1672), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(541), - [sym_field_declaration] = STATE(541), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [sym_preproc_def] = STATE(540), + [sym_preproc_function_def] = STATE(540), + [sym_preproc_call] = STATE(540), + [sym_preproc_if_in_field_declaration_list] = STATE(540), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), + [sym_preproc_else_in_field_declaration_list] = STATE(1758), + [sym_preproc_elif_in_field_declaration_list] = STATE(1758), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(540), + [sym_field_declaration] = STATE(540), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), - [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_if_token2] = ACTIONS(2065), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71349,40 +71448,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym_preproc_def] = STATE(539), - [sym_preproc_function_def] = STATE(539), - [sym_preproc_call] = STATE(539), - [sym_preproc_if_in_field_declaration_list] = STATE(539), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(539), - [sym_preproc_else_in_field_declaration_list] = STATE(1640), - [sym_preproc_elif_in_field_declaration_list] = STATE(1640), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(539), - [sym_field_declaration] = STATE(539), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(539), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [536] = { + [sym_preproc_def] = STATE(540), + [sym_preproc_function_def] = STATE(540), + [sym_preproc_call] = STATE(540), + [sym_preproc_if_in_field_declaration_list] = STATE(540), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), + [sym_preproc_else_in_field_declaration_list] = STATE(1779), + [sym_preproc_elif_in_field_declaration_list] = STATE(1779), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(540), + [sym_field_declaration] = STATE(540), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), - [aux_sym_preproc_if_token2] = ACTIONS(2114), + [aux_sym_preproc_if_token2] = ACTIONS(2067), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71416,40 +71515,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_preproc_def] = STATE(529), - [sym_preproc_function_def] = STATE(529), - [sym_preproc_call] = STATE(529), - [sym_preproc_if_in_field_declaration_list] = STATE(529), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(529), - [sym_preproc_else_in_field_declaration_list] = STATE(1874), - [sym_preproc_elif_in_field_declaration_list] = STATE(1874), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(529), - [sym_field_declaration] = STATE(529), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(529), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [537] = { + [sym_preproc_def] = STATE(535), + [sym_preproc_function_def] = STATE(535), + [sym_preproc_call] = STATE(535), + [sym_preproc_if_in_field_declaration_list] = STATE(535), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), + [sym_preproc_else_in_field_declaration_list] = STATE(1837), + [sym_preproc_elif_in_field_declaration_list] = STATE(1837), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(535), + [sym_field_declaration] = STATE(535), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), - [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2069), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71483,40 +71582,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_field_declaration_list] = STATE(541), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), - [sym_preproc_else_in_field_declaration_list] = STATE(1804), - [sym_preproc_elif_in_field_declaration_list] = STATE(1804), - [sym__declaration_modifiers] = STATE(741), - [sym__declaration_specifiers] = STATE(1238), - [sym_attribute_specifier] = STATE(741), - [sym_attribute_declaration] = STATE(741), - [sym_ms_declspec_modifier] = STATE(741), - [sym_storage_class_specifier] = STATE(741), - [sym_type_qualifier] = STATE(741), - [sym__type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(925), - [sym_enum_specifier] = STATE(925), - [sym_struct_specifier] = STATE(925), - [sym_union_specifier] = STATE(925), - [sym__field_declaration_list_item] = STATE(541), - [sym_field_declaration] = STATE(541), - [sym_macro_type_specifier] = STATE(925), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(741), - [aux_sym_sized_type_specifier_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1997), + [538] = { + [sym_preproc_def] = STATE(540), + [sym_preproc_function_def] = STATE(540), + [sym_preproc_call] = STATE(540), + [sym_preproc_if_in_field_declaration_list] = STATE(540), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), + [sym_preproc_else_in_field_declaration_list] = STATE(1735), + [sym_preproc_elif_in_field_declaration_list] = STATE(1735), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1144), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(540), + [sym_field_declaration] = STATE(540), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2011), [aux_sym_preproc_def_token1] = ACTIONS(2045), [aux_sym_preproc_if_token1] = ACTIONS(2047), - [aux_sym_preproc_if_token2] = ACTIONS(2118), + [aux_sym_preproc_if_token2] = ACTIONS(2071), [aux_sym_preproc_ifdef_token1] = ACTIONS(2051), [aux_sym_preproc_ifdef_token2] = ACTIONS(2051), - [aux_sym_preproc_else_token1] = ACTIONS(2007), - [aux_sym_preproc_elif_token1] = ACTIONS(2009), + [aux_sym_preproc_else_token1] = ACTIONS(2021), + [aux_sym_preproc_elif_token1] = ACTIONS(2023), [sym_preproc_directive] = ACTIONS(2053), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), @@ -71550,409 +71649,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2120), 1, - anon_sym_RPAREN, - ACTIONS(2122), 1, - anon_sym___extension__, - STATE(705), 1, - sym_string_literal, - STATE(995), 1, - sym__expression, - STATE(1456), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [114] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2088), 1, - anon_sym___attribute__, - ACTIONS(2091), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2094), 1, - anon_sym___declspec, - ACTIONS(2100), 1, - sym_primitive_type, - ACTIONS(2103), 1, - anon_sym_enum, - ACTIONS(2106), 1, - anon_sym_struct, - ACTIONS(2109), 1, - anon_sym_union, - ACTIONS(2124), 1, - aux_sym_preproc_def_token1, - ACTIONS(2127), 1, - aux_sym_preproc_if_token1, - ACTIONS(2133), 1, - sym_preproc_directive, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1238), 1, - sym__declaration_specifiers, - ACTIONS(2130), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2074), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(2097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(541), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2082), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2085), 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, - [224] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2136), 1, - anon_sym_RPAREN, - ACTIONS(2138), 1, - anon_sym___extension__, - STATE(705), 1, - sym_string_literal, - STATE(996), 1, - sym__expression, - STATE(1470), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [338] = 24, + [539] = { + [sym_preproc_def] = STATE(539), + [sym_preproc_function_def] = STATE(539), + [sym_preproc_call] = STATE(539), + [sym_preproc_if_in_field_declaration_list] = STATE(539), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(539), + [sym__declaration_modifiers] = STATE(744), + [sym__declaration_specifiers] = STATE(1145), + [sym_attribute_specifier] = STATE(744), + [sym_attribute_declaration] = STATE(744), + [sym_ms_declspec_modifier] = STATE(744), + [sym_storage_class_specifier] = STATE(744), + [sym_type_qualifier] = STATE(744), + [sym__type_specifier] = STATE(777), + [sym_sized_type_specifier] = STATE(811), + [sym_enum_specifier] = STATE(811), + [sym_struct_specifier] = STATE(811), + [sym_union_specifier] = STATE(811), + [sym__field_declaration_list_item] = STATE(539), + [sym_field_declaration] = STATE(539), + [sym_macro_type_specifier] = STATE(811), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(539), + [aux_sym__declaration_specifiers_repeat1] = STATE(744), + [aux_sym_sized_type_specifier_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(2073), + [aux_sym_preproc_def_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token1] = ACTIONS(2079), + [aux_sym_preproc_if_token2] = ACTIONS(2082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2082), + [aux_sym_preproc_elif_token1] = ACTIONS(2082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2082), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2082), + [sym_preproc_directive] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2099), + [anon_sym___declspec] = ACTIONS(2102), + [anon_sym_signed] = ACTIONS(2105), + [anon_sym_unsigned] = ACTIONS(2105), + [anon_sym_long] = ACTIONS(2105), + [anon_sym_short] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_auto] = ACTIONS(2093), + [anon_sym_register] = ACTIONS(2093), + [anon_sym_inline] = ACTIONS(2093), + [anon_sym___inline] = ACTIONS(2093), + [anon_sym___inline__] = ACTIONS(2093), + [anon_sym___forceinline] = ACTIONS(2093), + [anon_sym_thread_local] = ACTIONS(2093), + [anon_sym___thread] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_constexpr] = ACTIONS(2090), + [anon_sym_volatile] = ACTIONS(2090), + [anon_sym_restrict] = ACTIONS(2090), + [anon_sym___restrict__] = ACTIONS(2090), + [anon_sym__Atomic] = ACTIONS(2090), + [anon_sym__Noreturn] = ACTIONS(2090), + [anon_sym_noreturn] = ACTIONS(2090), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2114), + [anon_sym_union] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(2073), 1, sym_identifier, - ACTIONS(2140), 1, - anon_sym___extension__, - STATE(705), 1, - sym_string_literal, - STATE(1045), 1, - sym__expression, - STATE(1541), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [449] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + ACTIONS(2096), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(2099), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2102), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(2108), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(2111), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(2114), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(2117), 1, anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - ACTIONS(2142), 1, + ACTIONS(2120), 1, aux_sym_preproc_def_token1, - ACTIONS(2144), 1, + ACTIONS(2123), 1, aux_sym_preproc_if_token1, - ACTIONS(2146), 1, - aux_sym_preproc_if_token2, - ACTIONS(2150), 1, + ACTIONS(2129), 1, sym_preproc_directive, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1237), 1, + STATE(1144), 1, sym__declaration_specifiers, - ACTIONS(2148), 2, + ACTIONS(2126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, + ACTIONS(2082), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(2105), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -71960,7 +71776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(546), 8, + STATE(540), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -71969,7 +71785,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, + ACTIONS(2090), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -71979,7 +71795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2093), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -71990,11 +71806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [557] = 23, + [110] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -72005,14 +71823,16 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2152), 1, + ACTIONS(2132), 1, anon_sym_RPAREN, - STATE(705), 1, + ACTIONS(2134), 1, + anon_sym___extension__, + STATE(715), 1, sym_string_literal, - STATE(1015), 1, + STATE(1029), 1, sym__expression, - STATE(1692), 1, - sym_comma_expression, + STATE(1510), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72052,13 +71872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72075,266 +71895,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [665] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2074), 1, - aux_sym_preproc_if_token2, - ACTIONS(2088), 1, - anon_sym___attribute__, - ACTIONS(2091), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2094), 1, - anon_sym___declspec, - ACTIONS(2100), 1, - sym_primitive_type, - ACTIONS(2103), 1, - anon_sym_enum, - ACTIONS(2106), 1, - anon_sym_struct, - ACTIONS(2109), 1, - anon_sym_union, - ACTIONS(2154), 1, - aux_sym_preproc_def_token1, - ACTIONS(2157), 1, - aux_sym_preproc_if_token1, - ACTIONS(2163), 1, - sym_preproc_directive, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1237), 1, - sym__declaration_specifiers, - ACTIONS(2160), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(546), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2082), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2085), 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, - [773] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - ACTIONS(2142), 1, - aux_sym_preproc_def_token1, - ACTIONS(2144), 1, - aux_sym_preproc_if_token1, - ACTIONS(2150), 1, - sym_preproc_directive, - ACTIONS(2166), 1, - aux_sym_preproc_if_token2, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1237), 1, - sym__declaration_specifiers, - ACTIONS(2148), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(544), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [881] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2088), 1, - anon_sym___attribute__, - ACTIONS(2091), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2094), 1, - anon_sym___declspec, - ACTIONS(2100), 1, - sym_primitive_type, - ACTIONS(2103), 1, - anon_sym_enum, - ACTIONS(2106), 1, - anon_sym_struct, - ACTIONS(2109), 1, - anon_sym_union, - ACTIONS(2168), 1, - aux_sym_preproc_def_token1, - ACTIONS(2171), 1, - aux_sym_preproc_if_token1, - ACTIONS(2177), 1, - sym_preproc_directive, - ACTIONS(2180), 1, - anon_sym_RBRACE, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1235), 1, - sym__declaration_specifiers, - ACTIONS(2174), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(548), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2082), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2085), 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, - [989] = 23, + [224] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -72345,14 +71912,16 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2182), 1, + ACTIONS(2136), 1, anon_sym_RPAREN, - STATE(705), 1, + ACTIONS(2138), 1, + anon_sym___extension__, + STATE(715), 1, sym_string_literal, - STATE(1037), 1, + STATE(1014), 1, sym__expression, - STATE(1754), 1, - sym_comma_expression, + STATE(1484), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72392,13 +71961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72415,11 +71984,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1097] = 23, + [338] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -72430,14 +72001,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2184), 1, - anon_sym_RPAREN, - STATE(705), 1, + ACTIONS(2140), 1, + anon_sym___extension__, + STATE(715), 1, sym_string_literal, - STATE(1032), 1, + STATE(1033), 1, sym__expression, - STATE(1763), 1, - sym_comma_expression, + STATE(1631), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72477,96 +72048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1205] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - STATE(705), 1, - sym_string_literal, - STATE(755), 1, - sym_initializer_list, - STATE(847), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72575,101 +72066,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1311] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - ACTIONS(2190), 1, - aux_sym_preproc_def_token1, - ACTIONS(2192), 1, - aux_sym_preproc_if_token1, - ACTIONS(2196), 1, - sym_preproc_directive, - ACTIONS(2198), 1, - anon_sym_RBRACE, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1235), 1, - sym__declaration_specifiers, - ACTIONS(2194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(564), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1419] = 23, + [449] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72686,11 +72088,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1009), 1, + STATE(1047), 1, sym__expression, - STATE(1553), 1, + STATE(1607), 1, sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, @@ -72731,13 +72133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72754,7 +72156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1527] = 23, + [557] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72769,13 +72171,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(2142), 1, anon_sym_SEMI, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1022), 1, + STATE(1066), 1, sym__expression, - STATE(1858), 1, + STATE(1818), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72816,13 +72218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72839,29 +72241,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1635] = 23, + [665] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1899), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1905), 1, - anon_sym_sizeof, - ACTIONS(1907), 1, - anon_sym_LPAREN2, - STATE(705), 1, + ACTIONS(2144), 1, + anon_sym_RPAREN, + STATE(715), 1, sym_string_literal, - STATE(755), 1, - sym_initializer_list, - STATE(847), 1, + STATE(1030), 1, sym__expression, + STATE(1655), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -72871,18 +72285,91 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [773] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1883), 1, + sym_identifier, + ACTIONS(2146), 1, + anon_sym_RPAREN, + STATE(715), 1, + sym_string_literal, + STATE(1035), 1, + sym__expression, + STATE(1657), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72901,13 +72388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72924,7 +72411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1743] = 23, + [881] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72937,16 +72424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + ACTIONS(2148), 1, + anon_sym_SEMI, + STATE(715), 1, sym_string_literal, - STATE(1019), 1, + STATE(1040), 1, sym__expression, - STATE(1574), 1, - sym_initializer_list, + STATE(1684), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72986,13 +72473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73009,7 +72496,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1851] = 23, + [989] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 1, + sym_identifier, + ACTIONS(2096), 1, + anon_sym___attribute__, + ACTIONS(2099), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2102), 1, + anon_sym___declspec, + ACTIONS(2108), 1, + sym_primitive_type, + ACTIONS(2111), 1, + anon_sym_enum, + ACTIONS(2114), 1, + anon_sym_struct, + ACTIONS(2117), 1, + anon_sym_union, + ACTIONS(2150), 1, + aux_sym_preproc_def_token1, + ACTIONS(2153), 1, + aux_sym_preproc_if_token1, + ACTIONS(2159), 1, + sym_preproc_directive, + ACTIONS(2162), 1, + anon_sym_RBRACE, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1140), 1, + sym__declaration_specifiers, + ACTIONS(2156), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2105), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(549), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2090), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2093), 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, + [1097] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73024,13 +72596,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2202), 1, + ACTIONS(2164), 1, anon_sym_SEMI, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1044), 1, + STATE(1073), 1, sym__expression, - STATE(1649), 1, + STATE(1852), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73071,13 +72643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73094,7 +72666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1959] = 23, + [1205] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73109,13 +72681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2204), 1, + ACTIONS(2166), 1, anon_sym_SEMI, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1046), 1, + STATE(1054), 1, sym__expression, - STATE(1781), 1, + STATE(1751), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73156,13 +72728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73179,7 +72751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2067] = 23, + [1313] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73194,13 +72766,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2206), 1, - anon_sym_SEMI, - STATE(705), 1, + ACTIONS(2168), 1, + anon_sym_RPAREN, + STATE(715), 1, sym_string_literal, - STATE(1006), 1, + STATE(1037), 1, sym__expression, - STATE(1712), 1, + STATE(1656), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73241,13 +72813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73264,7 +72836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2175] = 23, + [1421] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73281,12 +72853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(755), 1, - sym_initializer_list, - STATE(756), 1, + STATE(1051), 1, sym__expression, + STATE(1620), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73326,13 +72898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73349,7 +72921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2283] = 23, + [1529] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73364,13 +72936,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2208), 1, + ACTIONS(2170), 1, anon_sym_SEMI, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1012), 1, + STATE(1031), 1, sym__expression, - STATE(1694), 1, + STATE(1785), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73411,13 +72983,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73434,7 +73006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2391] = 23, + [1637] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73449,13 +73021,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2210), 1, - anon_sym_RPAREN, - STATE(705), 1, + ACTIONS(2172), 1, + anon_sym_SEMI, + STATE(715), 1, sym_string_literal, - STATE(1026), 1, + STATE(1036), 1, sym__expression, - STATE(1764), 1, + STATE(1741), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73496,13 +73068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73519,7 +73091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2499] = 23, + [1745] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73534,13 +73106,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2212), 1, - anon_sym_RPAREN, - STATE(705), 1, + ACTIONS(2174), 1, + anon_sym_SEMI, + STATE(715), 1, sym_string_literal, - STATE(1013), 1, + STATE(1056), 1, sym__expression, - STATE(1693), 1, + STATE(1752), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73581,13 +73153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73604,7 +73176,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2607] = 23, + [1853] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + ACTIONS(2176), 1, + aux_sym_preproc_def_token1, + ACTIONS(2178), 1, + aux_sym_preproc_if_token1, + ACTIONS(2180), 1, + aux_sym_preproc_if_token2, + ACTIONS(2184), 1, + sym_preproc_directive, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1141), 1, + sym__declaration_specifiers, + ACTIONS(2182), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(564), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [1961] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -73621,23 +73278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - ACTIONS(2190), 1, + ACTIONS(2186), 1, aux_sym_preproc_def_token1, - ACTIONS(2192), 1, + ACTIONS(2188), 1, aux_sym_preproc_if_token1, - ACTIONS(2196), 1, + ACTIONS(2192), 1, sym_preproc_directive, - ACTIONS(2214), 1, + ACTIONS(2194), 1, anon_sym_RBRACE, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1235), 1, + STATE(1140), 1, sym__declaration_specifiers, - ACTIONS(2194), 2, + ACTIONS(2190), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -73645,13 +73302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -73659,7 +73316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(548), 8, + STATE(549), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -73689,7 +73346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2715] = 22, + [2069] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73704,13 +73361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(755), 1, + STATE(806), 1, sym_initializer_list, - STATE(756), 1, + STATE(808), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -73730,7 +73387,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73751,7 +73408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73773,7 +73430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2821] = 23, + [2175] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73788,13 +73445,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2220), 1, + ACTIONS(2200), 1, anon_sym_RPAREN, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1043), 1, + STATE(1070), 1, sym__expression, - STATE(1750), 1, + STATE(1717), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73835,13 +73492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73858,7 +73515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2929] = 23, + [2283] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73873,13 +73530,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2222), 1, - anon_sym_SEMI, - STATE(705), 1, + ACTIONS(2202), 1, + anon_sym_RPAREN, + STATE(715), 1, sym_string_literal, - STATE(1025), 1, + STATE(1057), 1, sym__expression, - STATE(1714), 1, + STATE(1734), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73920,13 +73577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73943,41 +73600,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3037] = 23, + [2391] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(2224), 1, - anon_sym_SEMI, - STATE(705), 1, + ACTIONS(1905), 1, + anon_sym_sizeof, + ACTIONS(1955), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(1028), 1, + STATE(806), 1, + sym_initializer_list, + STATE(899), 1, sym__expression, - STATE(1715), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -73987,6 +73632,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1903), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74005,13 +73662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74028,7 +73685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3145] = 23, + [2499] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74043,13 +73700,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2226), 1, - anon_sym_SEMI, - STATE(705), 1, + ACTIONS(2204), 1, + anon_sym_RPAREN, + STATE(715), 1, sym_string_literal, - STATE(1041), 1, + STATE(1067), 1, sym__expression, - STATE(1647), 1, + STATE(1716), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74090,13 +73747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74113,27 +73770,126 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3253] = 21, + [2607] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + ACTIONS(2176), 1, + aux_sym_preproc_def_token1, + ACTIONS(2178), 1, + aux_sym_preproc_if_token1, + ACTIONS(2184), 1, + sym_preproc_directive, + ACTIONS(2206), 1, + aux_sym_preproc_if_token2, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1141), 1, + sym__declaration_specifiers, + ACTIONS(2182), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(569), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2715] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(806), 1, + sym_initializer_list, + STATE(808), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74143,18 +73899,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74173,11 +73917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74186,16 +73935,97 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3356] = 21, + [2823] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + ACTIONS(2186), 1, + aux_sym_preproc_def_token1, + ACTIONS(2188), 1, + aux_sym_preproc_if_token1, + ACTIONS(2192), 1, + sym_preproc_directive, + ACTIONS(2208), 1, + anon_sym_RBRACE, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1140), 1, + sym__declaration_specifiers, + ACTIONS(2190), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(558), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2931] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74206,15 +74036,17 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, + ACTIONS(1524), 1, + anon_sym_LBRACE, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2230), 1, - anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(806), 1, + sym_initializer_list, + STATE(899), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74231,10 +74063,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74255,7 +74087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74277,7 +74109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3459] = 22, + [3037] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74292,11 +74124,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + ACTIONS(2214), 1, + anon_sym_SEMI, + STATE(715), 1, sym_string_literal, - STATE(1008), 1, + STATE(1046), 1, sym__expression, - STATE(1812), 1, + STATE(1715), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74337,13 +74171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74360,7 +74194,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3564] = 22, + [3145] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 1, + sym_identifier, + ACTIONS(2082), 1, + aux_sym_preproc_if_token2, + ACTIONS(2096), 1, + anon_sym___attribute__, + ACTIONS(2099), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2102), 1, + anon_sym___declspec, + ACTIONS(2108), 1, + sym_primitive_type, + ACTIONS(2111), 1, + anon_sym_enum, + ACTIONS(2114), 1, + anon_sym_struct, + ACTIONS(2117), 1, + anon_sym_union, + ACTIONS(2216), 1, + aux_sym_preproc_def_token1, + ACTIONS(2219), 1, + aux_sym_preproc_if_token1, + ACTIONS(2225), 1, + sym_preproc_directive, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1141), 1, + sym__declaration_specifiers, + ACTIONS(2222), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2105), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(569), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2090), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2093), 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, + [3253] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74375,12 +74294,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + ACTIONS(2228), 1, + anon_sym_COLON, + STATE(715), 1, sym_string_literal, - STATE(994), 1, + STATE(1080), 1, sym__expression, - STATE(1562), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74420,13 +74339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74443,94 +74362,89 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3669] = 26, + [3358] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_RPAREN, - ACTIONS(2033), 1, - anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(1867), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2234), 1, + ACTIONS(2230), 1, + anon_sym_RBRACK, + STATE(715), 1, + sym_string_literal, + STATE(907), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1863), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1865), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, anon_sym_STAR, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1181), 1, - sym__declaration_specifiers, - STATE(1385), 1, - sym_parameter_list, - STATE(1438), 1, - sym__abstract_declarator, - STATE(1486), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1371), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3782] = 21, + anon_sym_AMP, + ACTIONS(2212), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(798), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3461] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74543,13 +74457,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2236), 1, + ACTIONS(2232), 1, anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74566,10 +74480,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74590,7 +74504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74612,27 +74526,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3885] = 21, + [3564] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, - anon_sym_RBRACK, - STATE(705), 1, + ACTIONS(2234), 1, + anon_sym_COLON, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(1107), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74642,18 +74568,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74672,11 +74586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74685,36 +74604,44 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3988] = 21, + [3669] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(1063), 1, sym__expression, + STATE(1868), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74724,18 +74651,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74754,11 +74669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74767,16 +74687,99 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4091] = 22, + [3774] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1943), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1945), 1, + anon_sym_RPAREN, + ACTIONS(1953), 1, + anon_sym_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, + anon_sym_STAR, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1074), 1, + sym__declaration_specifiers, + STATE(1387), 1, + sym_parameter_list, + STATE(1431), 1, + sym__abstract_declarator, + STATE(1487), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1401), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [3887] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74791,11 +74794,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2242), 1, + ACTIONS(2240), 1, anon_sym_COLON, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1081), 1, + STATE(1085), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74836,13 +74839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74859,7 +74862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4196] = 22, + [3992] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74874,12 +74877,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2244), 1, - anon_sym_COLON, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1085), 1, + STATE(1028), 1, sym__expression, + STATE(1610), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74919,13 +74922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74942,7 +74945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4301] = 21, + [4097] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74955,13 +74958,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2246), 1, + ACTIONS(2242), 1, anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74978,10 +74981,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75002,7 +75005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75024,90 +75027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4404] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2248), 1, - anon_sym_COLON, - STATE(705), 1, - sym_string_literal, - STATE(1076), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [4509] = 22, + [4200] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75122,12 +75042,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - ACTIONS(2250), 1, - anon_sym_COLON, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1047), 1, + STATE(1045), 1, sym__expression, + STATE(1865), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75167,13 +75087,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75190,7 +75110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4614] = 21, + [4305] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75203,13 +75123,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, + ACTIONS(2244), 1, anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75226,10 +75146,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75250,7 +75170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75272,7 +75192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4717] = 21, + [4408] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75285,13 +75205,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2254), 1, + ACTIONS(2246), 1, anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75308,10 +75228,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75332,7 +75252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75354,7 +75274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4820] = 21, + [4511] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75367,13 +75287,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2256), 1, + ACTIONS(2248), 1, anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75390,10 +75310,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75414,7 +75334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75436,7 +75356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4923] = 22, + [4614] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75451,12 +75371,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + ACTIONS(2250), 1, + anon_sym_COLON, + STATE(715), 1, sym_string_literal, - STATE(1024), 1, + STATE(1092), 1, sym__expression, - STATE(1727), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75496,13 +75416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75519,7 +75439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5028] = 21, + [4719] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75532,13 +75452,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - ACTIONS(2258), 1, + ACTIONS(2252), 1, anon_sym_RBRACK, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75555,10 +75475,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75579,7 +75499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75601,7 +75521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5131] = 20, + [4822] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75612,17 +75532,16 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + ACTIONS(2254), 1, + anon_sym_RBRACK, + STATE(715), 1, sym_string_literal, - STATE(767), 1, + STATE(907), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75632,13 +75551,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75659,7 +75581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75681,7 +75603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5231] = 21, + [4925] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75690,15 +75612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + ACTIONS(2256), 1, + anon_sym_RBRACK, + STATE(715), 1, sym_string_literal, - STATE(1090), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75709,16 +75633,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75739,16 +75663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75757,42 +75676,36 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5333] = 21, + [5028] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1867), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + ACTIONS(2258), 1, + anon_sym_RBRACK, + STATE(715), 1, sym_string_literal, - STATE(760), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75802,6 +75715,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1863), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1865), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75820,16 +75745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75838,42 +75758,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5435] = 21, + [5131] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(967), 1, + STATE(804), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75883,6 +75798,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75901,16 +75825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75919,12 +75838,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5537] = 21, + [5231] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75939,9 +75862,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1087), 1, + STATE(1005), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75982,13 +75905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76005,37 +75928,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5639] = 21, + [5333] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2260), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(744), 1, + STATE(802), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76045,6 +75959,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76063,16 +75986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76081,42 +75999,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5741] = 21, + [5433] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1867), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(768), 1, + STATE(895), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76126,6 +76036,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1863), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1865), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76144,16 +76066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76162,42 +76079,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5843] = 21, + [5533] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(1004), 1, + STATE(782), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76207,6 +76119,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76225,16 +76146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76243,12 +76159,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5945] = 21, + [5633] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76263,9 +76183,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1050), 1, + STATE(1103), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76306,13 +76226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76329,7 +76249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6047] = 21, + [5735] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76338,15 +76258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1051), 1, + STATE(896), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -76357,16 +76277,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76387,16 +76307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76405,12 +76320,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6149] = 21, + [5835] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76425,9 +76344,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1002), 1, + STATE(1027), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76468,13 +76387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76491,37 +76410,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6251] = 21, + [5937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1867), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(1072), 1, + STATE(909), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76531,6 +76438,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1863), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1865), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76549,16 +76468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76567,12 +76481,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6353] = 21, + [6037] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76587,9 +76505,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1063), 1, + STATE(761), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76630,13 +76548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76653,7 +76571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6455] = 21, + [6139] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76668,9 +76586,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1048), 1, + STATE(1109), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76711,13 +76629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76734,7 +76652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6557] = 21, + [6241] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76743,15 +76661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(842), 1, + STATE(912), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -76762,16 +76680,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76792,16 +76710,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(798), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, sym_subscript_expression, sym_call_expression, + sym_gnu_asm_expression, sym_field_expression, + sym_compound_literal_expression, sym_parenthesized_expression, - STATE(758), 16, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6341] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, + anon_sym_LPAREN2, + STATE(715), 1, + sym_string_literal, + STATE(789), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76810,12 +76803,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6659] = 20, + [6441] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76826,14 +76823,17 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1867), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(834), 1, + STATE(764), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76843,16 +76843,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76873,7 +76870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76895,7 +76892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6759] = 21, + [6541] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76904,16 +76901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(833), 1, + STATE(772), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76923,16 +76923,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76953,16 +76950,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(798), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, sym_subscript_expression, sym_call_expression, + sym_gnu_asm_expression, sym_field_expression, + sym_compound_literal_expression, sym_parenthesized_expression, - STATE(758), 16, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6641] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, + anon_sym_LPAREN2, + STATE(715), 1, + sym_string_literal, + STATE(791), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76971,12 +77043,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6861] = 21, + [6741] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76991,9 +77067,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1060), 1, + STATE(1083), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77034,13 +77110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77057,7 +77133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6963] = 21, + [6843] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77066,15 +77142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(832), 1, + STATE(911), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77085,16 +77161,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77115,16 +77191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77133,12 +77204,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7065] = 21, + [6943] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77147,16 +77222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1086), 1, + STATE(778), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77166,16 +77244,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77196,16 +77271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77214,12 +77284,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7167] = 21, + [7043] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77228,15 +77302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1073), 1, + STATE(910), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77247,16 +77321,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77277,16 +77351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77295,42 +77364,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7269] = 21, + [7143] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(999), 1, + STATE(759), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77340,6 +77404,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77358,16 +77431,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(798), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, sym_subscript_expression, sym_call_expression, + sym_gnu_asm_expression, sym_field_expression, + sym_compound_literal_expression, sym_parenthesized_expression, - STATE(758), 16, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7243] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, + anon_sym_LPAREN2, + STATE(715), 1, + sym_string_literal, + STATE(803), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77376,12 +77524,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7371] = 21, + [7343] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77396,9 +77548,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1088), 1, + STATE(1032), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77439,13 +77591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77462,7 +77614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7473] = 21, + [7445] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77475,11 +77627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1049), 1, + STATE(1110), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77496,10 +77648,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77520,13 +77672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77543,7 +77695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7575] = 21, + [7547] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77552,16 +77704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1079), 1, + STATE(792), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77571,16 +77726,93 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(798), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7647] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1867), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + STATE(715), 1, + sym_string_literal, + STATE(908), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1863), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77601,16 +77833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77619,42 +77846,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7677] = 21, + [7747] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1899), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1905), 1, + anon_sym_sizeof, + ACTIONS(1955), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(1042), 1, + STATE(1093), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77664,6 +77883,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1903), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77682,13 +77913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77705,37 +77936,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7779] = 21, + [7849] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1867), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(1061), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77745,6 +77964,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1863), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1865), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77763,16 +77994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77781,12 +78007,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7881] = 21, + [7949] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77795,16 +78025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1905), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1052), 1, + STATE(805), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77814,16 +78047,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1903), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77844,16 +78074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77862,12 +78087,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7983] = 21, + [8049] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77882,9 +78111,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(973), 1, + STATE(1095), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77925,13 +78154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77948,7 +78177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8085] = 21, + [8151] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77963,9 +78192,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(997), 1, + STATE(1114), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78006,13 +78235,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78029,7 +78258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8187] = 21, + [8253] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78042,11 +78271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1062), 1, + STATE(896), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78063,10 +78292,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78087,13 +78316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78110,7 +78339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8289] = 20, + [8355] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78121,17 +78350,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(745), 1, + STATE(905), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78141,13 +78367,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78168,7 +78397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78190,7 +78419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8389] = 21, + [8455] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78203,11 +78432,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1084), 1, + STATE(1100), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78224,12 +78453,93 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8557] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1883), 1, + sym_identifier, + STATE(715), 1, + sym_string_literal, + STATE(984), 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(1917), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78248,13 +78558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78271,7 +78581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8491] = 20, + [8659] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78284,11 +78594,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(837), 1, + STATE(902), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78305,10 +78615,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78329,7 +78639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78351,28 +78661,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8591] = 20, + [8759] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(768), 1, + STATE(1026), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78382,15 +78701,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78409,11 +78719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78422,16 +78737,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8691] = 20, + [8861] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78442,17 +78753,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(744), 1, + STATE(900), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78462,13 +78770,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78489,7 +78800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78511,7 +78822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8791] = 21, + [8961] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78524,11 +78835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1089), 1, + STATE(1090), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78545,10 +78856,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78569,13 +78880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78592,7 +78903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8893] = 20, + [9063] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78601,15 +78912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1867), 1, + ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(832), 1, + STATE(901), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78620,16 +78931,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, + ACTIONS(1901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78650,11 +78961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78663,16 +78979,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8993] = 20, + [9165] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78681,19 +78993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(747), 1, + STATE(1087), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78703,13 +79012,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78730,11 +79042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78743,16 +79060,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9093] = 21, + [9267] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78767,9 +79080,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(978), 1, + STATE(1001), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78810,13 +79123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78833,7 +79146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9195] = 21, + [9369] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78848,9 +79161,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(974), 1, + STATE(1007), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78891,13 +79204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78914,7 +79227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9297] = 21, + [9471] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78927,11 +79240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1082), 1, + STATE(1075), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78948,10 +79261,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78972,13 +79285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78995,25 +79308,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9399] = 20, + [9573] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(833), 1, + STATE(1008), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79023,18 +79348,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -79053,11 +79366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79066,34 +79384,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9499] = 20, + [9675] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(845), 1, + STATE(985), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79103,18 +79429,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9777] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1883), 1, + sym_identifier, + STATE(715), 1, + sym_string_literal, + STATE(1006), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -79133,11 +79528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79146,16 +79546,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9599] = 20, + [9879] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79166,14 +79562,17 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1867), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(850), 1, + STATE(773), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79183,16 +79582,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79213,7 +79609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79235,25 +79631,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9699] = 20, + [9979] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(842), 1, + STATE(1004), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79263,18 +79671,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -79293,11 +79689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79306,16 +79707,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9799] = 21, + [10081] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79330,9 +79727,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(970), 1, + STATE(1003), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79373,13 +79770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79396,87 +79793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9901] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - STATE(705), 1, - sym_string_literal, - STATE(830), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(758), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [10001] = 21, + [10183] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79491,9 +79808,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(975), 1, + STATE(805), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79534,13 +79851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79557,25 +79874,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10103] = 20, + [10285] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(843), 1, + STATE(782), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79585,18 +79914,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -79615,11 +79932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79628,16 +79950,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10203] = 21, + [10387] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79652,9 +79970,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(968), 1, + STATE(778), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79695,13 +80013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79718,105 +80036,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10305] = 20, + [10489] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(772), 1, + STATE(1104), 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(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(758), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [10405] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1899), 1, - sym_identifier, - ACTIONS(1905), 1, - anon_sym_sizeof, - ACTIONS(1907), 1, - anon_sym_LPAREN2, - STATE(705), 1, - sym_string_literal, - STATE(1074), 1, - sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79826,18 +80076,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1903), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1917), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -79856,13 +80094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79879,7 +80117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10507] = 21, + [10591] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79894,9 +80132,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(969), 1, + STATE(1081), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79937,13 +80175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79960,7 +80198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10609] = 21, + [10693] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79975,9 +80213,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1054), 1, + STATE(1002), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80018,13 +80256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80041,37 +80279,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10711] = 21, + [10795] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1899), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1905), 1, + anon_sym_sizeof, + ACTIONS(1955), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(993), 1, + STATE(1094), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80081,6 +80307,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1903), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80099,13 +80337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80122,37 +80360,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10813] = 21, + [10897] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1899), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1905), 1, + anon_sym_sizeof, + ACTIONS(1955), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(745), 1, + 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80162,6 +80388,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1903), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80180,13 +80418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80203,37 +80441,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10915] = 21, + [10999] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(972), 1, + STATE(761), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80243,6 +80472,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2198), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80261,16 +80499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80279,12 +80512,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11017] = 20, + [11099] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80297,11 +80534,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(760), 1, + STATE(796), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -80321,7 +80558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80342,7 +80579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80364,7 +80601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11117] = 21, + [11199] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80379,9 +80616,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(971), 1, + STATE(996), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80422,13 +80659,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80445,7 +80682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11219] = 20, + [11301] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80456,17 +80693,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(752), 1, + STATE(898), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80476,13 +80710,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80503,7 +80740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80525,25 +80762,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11319] = 20, + [11401] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1867), 1, - anon_sym_sizeof, - ACTIONS(2186), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(838), 1, + STATE(1021), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80553,18 +80802,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80583,11 +80820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80596,16 +80838,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11419] = 20, + [11503] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80616,17 +80854,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(774), 1, + STATE(893), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80636,13 +80871,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1863), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80663,7 +80901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80685,7 +80923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11519] = 21, + [11603] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80698,11 +80936,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1075), 1, + STATE(909), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80719,10 +80957,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80743,13 +80981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80766,37 +81004,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11621] = 21, + [11705] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1867), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(1016), 1, + STATE(894), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80806,6 +81032,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1863), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1865), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2212), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80824,16 +81062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80842,12 +81075,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11723] = 20, + [11805] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80856,15 +81093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1867), 1, + ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(839), 1, + STATE(1089), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80875,16 +81112,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, + ACTIONS(1901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80905,11 +81142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80918,16 +81160,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11823] = 20, + [11907] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80940,11 +81178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(840), 1, + STATE(907), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80961,10 +81199,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80985,7 +81223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81007,28 +81245,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11923] = 20, + [12007] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(762), 1, + STATE(1101), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81038,15 +81285,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81065,11 +81303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81078,16 +81321,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12023] = 20, + [12109] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81096,15 +81335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1867), 1, + ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(848), 1, + STATE(1097), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81115,16 +81354,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, + ACTIONS(1901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81145,11 +81384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81158,16 +81402,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12123] = 20, + [12211] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81178,14 +81418,17 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1514), 1, sym_identifier, - ACTIONS(1867), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2196), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(841), 1, + STATE(785), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81195,16 +81438,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81225,7 +81465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81247,7 +81487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12223] = 20, + [12311] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81260,11 +81500,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1867), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(844), 1, + STATE(901), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81281,10 +81521,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1865), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(2212), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81305,7 +81545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81327,37 +81567,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12323] = 21, + [12411] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1883), 1, + ACTIONS(1899), 1, sym_identifier, - STATE(705), 1, + ACTIONS(1905), 1, + anon_sym_sizeof, + ACTIONS(1955), 1, + anon_sym_LPAREN2, + STATE(715), 1, sym_string_literal, - STATE(962), 1, + STATE(895), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81367,6 +81595,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1903), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81385,13 +81625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81408,7 +81648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12425] = 21, + [12513] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81423,9 +81663,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1883), 1, sym_identifier, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(966), 1, + STATE(1048), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81466,13 +81706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(783), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81489,7 +81729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12527] = 20, + [12615] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81498,19 +81738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(778), 1, + STATE(1091), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81520,13 +81757,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81547,11 +81787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81560,37 +81805,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12627] = 20, + [12717] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(780), 1, + STATE(1071), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81600,15 +81850,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81627,11 +81868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81640,16 +81886,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12727] = 20, + [12819] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81658,15 +81900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1867), 1, + ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(2186), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(846), 1, + STATE(1084), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81677,16 +81919,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1863), 2, + ACTIONS(1901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, + ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2188), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81707,91 +81949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, + STATE(947), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [12827] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - STATE(705), 1, - sym_string_literal, - STATE(781), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(758), 21, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81800,16 +81967,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12927] = 21, + [12921] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81822,11 +81985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(1907), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(1083), 1, + STATE(1076), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81843,10 +82006,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1911), 2, + ACTIONS(1959), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1917), 2, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81867,13 +82030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81890,28 +82053,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13029] = 20, + [13023] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(763), 1, + STATE(990), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81921,15 +82093,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81948,11 +82111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81961,37 +82129,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13129] = 20, + [13125] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(782), 1, + STATE(1082), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82001,15 +82174,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82028,11 +82192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(814), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82041,16 +82210,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13229] = 20, + [13227] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82059,19 +82224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1905), 1, anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(1955), 1, anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(759), 1, + STATE(1078), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82081,13 +82243,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1903), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2218), 2, + ACTIONS(1959), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1965), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82108,11 +82273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(758), 21, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82121,34 +82291,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, [13329] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1899), 1, + ACTIONS(1883), 1, sym_identifier, - ACTIONS(1905), 1, - anon_sym_sizeof, - ACTIONS(1907), 1, - anon_sym_LPAREN2, - STATE(705), 1, + STATE(715), 1, sym_string_literal, - STATE(843), 1, + STATE(1015), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82158,18 +82336,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1901), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1903), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1911), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1917), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82188,13 +82354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(814), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(758), 16, + STATE(798), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82228,19 +82394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, ACTIONS(2268), 1, anon_sym_LBRACE, - STATE(727), 1, + STATE(739), 1, sym_ms_call_modifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1260), 1, + STATE(1192), 1, sym__declaration_specifiers, - STATE(134), 3, + STATE(453), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -82249,7 +82415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -82262,7 +82428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82308,19 +82474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, ACTIONS(2270), 1, anon_sym_LBRACE, - STATE(724), 1, + STATE(735), 1, sym_ms_call_modifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1270), 1, + STATE(1216), 1, sym__declaration_specifiers, - STATE(387), 3, + STATE(367), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -82329,7 +82495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -82342,7 +82508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82388,19 +82554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, ACTIONS(2272), 1, anon_sym_LBRACE, - STATE(732), 1, + STATE(733), 1, sym_ms_call_modifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1264), 1, + STATE(1202), 1, sym__declaration_specifiers, - STATE(466), 3, + STATE(157), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -82409,7 +82575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -82422,7 +82588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82468,19 +82634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, ACTIONS(2274), 1, anon_sym_LBRACE, - STATE(725), 1, + STATE(737), 1, sym_ms_call_modifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1250), 1, + STATE(1220), 1, sym__declaration_specifiers, - STATE(398), 3, + STATE(222), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -82489,7 +82655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -82502,7 +82668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82548,19 +82714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, ACTIONS(2276), 1, anon_sym_LBRACE, - STATE(729), 1, + STATE(738), 1, sym_ms_call_modifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1265), 1, + STATE(1160), 1, sym__declaration_specifiers, - STATE(217), 3, + STATE(369), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -82569,7 +82735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -82582,7 +82748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82614,17 +82780,17 @@ static const uint16_t ts_small_parse_table[] = { [13936] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1907), 1, anon_sym_const, - ACTIONS(1959), 1, + ACTIONS(1911), 1, anon_sym_LPAREN2, - ACTIONS(1965), 1, + ACTIONS(1917), 1, anon_sym_STAR, - ACTIONS(1970), 1, + ACTIONS(1925), 1, anon_sym_EQ, - STATE(676), 1, + STATE(678), 1, sym_string_literal, - ACTIONS(1976), 2, + ACTIONS(1920), 2, anon_sym_RPAREN, anon_sym_LBRACK, ACTIONS(95), 5, @@ -82633,7 +82799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1968), 8, + ACTIONS(1923), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -82642,7 +82808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1974), 10, + ACTIONS(1929), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -82653,7 +82819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1963), 11, + ACTIONS(1915), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -82665,7 +82831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 12, + ACTIONS(1909), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82683,16 +82849,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(2278), 1, sym_identifier, - STATE(679), 2, + STATE(676), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, + ACTIONS(2285), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2282), 14, + ACTIONS(2283), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82707,7 +82873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2280), 29, + ACTIONS(2281), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82740,7 +82906,7 @@ static const uint16_t ts_small_parse_table[] = { [14080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 21, + ACTIONS(1877), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -82762,7 +82928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2284), 30, + ACTIONS(1875), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -82793,68 +82959,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [14139] = 3, + [14139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 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, + ACTIONS(2288), 1, + sym_identifier, + STATE(679), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1875), 30, + ACTIONS(2292), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [14198] = 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + ACTIONS(2290), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [14204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, + ACTIONS(2294), 1, sym_identifier, - STATE(681), 2, + STATE(676), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, @@ -82863,7 +83032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2292), 14, + ACTIONS(2298), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82878,7 +83047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2290), 29, + ACTIONS(2296), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82908,10 +83077,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [14263] = 3, + [14269] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 21, + ACTIONS(2310), 1, + anon_sym___attribute__, + ACTIONS(2313), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2316), 1, + anon_sym___declspec, + ACTIONS(2302), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(680), 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(2304), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2307), 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(2300), 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, + [14340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -82933,7 +83164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1879), 30, + ACTIONS(2319), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -82964,72 +83195,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [14322] = 6, + [14399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 1, - sym_identifier, - STATE(681), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2301), 5, + ACTIONS(1881), 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(2299), 14, + ACTIONS(1879), 30, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [14458] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_EQ, - ACTIONS(2297), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14387] = 20, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + STATE(215), 1, + sym_compound_statement, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1219), 1, + sym__declaration_specifiers, + STATE(695), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [14550] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -83040,33 +83342,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_RPAREN, - STATE(899), 1, + STATE(455), 1, + sym_compound_statement, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1181), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(1486), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(712), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [14642] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + STATE(136), 1, + sym_compound_statement, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1219), 1, + sym__declaration_specifiers, + STATE(703), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [14734] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + STATE(478), 1, + sym_compound_statement, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1219), 1, + sym__declaration_specifiers, + STATE(684), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83095,7 +83539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [14479] = 20, + [14826] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83110,93 +83554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - STATE(153), 1, - sym_compound_statement, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, - sym__declaration_specifiers, - STATE(708), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [14571] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(462), 1, + STATE(212), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(690), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83204,13 +83576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83239,7 +83611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [14663] = 20, + [14918] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83254,21 +83626,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(551), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(356), 1, + STATE(376), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83276,13 +83648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83311,7 +83683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [14755] = 20, + [15010] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83330,17 +83702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(388), 1, + STATE(403), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(689), 2, + STATE(700), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83348,13 +83720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83383,86 +83755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [14847] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2304), 1, - sym_identifier, - ACTIONS(2306), 1, - anon_sym_RPAREN, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1181), 1, - sym__declaration_specifiers, - STATE(1405), 1, - sym_variadic_parameter, - STATE(1486), 1, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [14941] = 20, + [15102] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -83471,21 +83772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(209), 1, + STATE(465), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83493,13 +83792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83528,7 +83827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15033] = 20, + [15194] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83543,21 +83842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(731), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(382), 1, + STATE(371), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(696), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83565,13 +83864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83600,7 +83899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15125] = 20, + [15286] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83619,89 +83918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(459), 1, + STATE(472), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, - sym__declaration_specifiers, - STATE(708), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [15217] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - STATE(384), 1, - sym_compound_statement, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(690), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83709,13 +83936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83744,7 +83971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15309] = 20, + [15378] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83759,21 +83986,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(731), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, STATE(354), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(698), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83781,13 +84008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83816,7 +84043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15401] = 20, + [15470] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83835,17 +84062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(215), 1, + STATE(204), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(688), 2, + STATE(687), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83853,13 +84080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83888,7 +84115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15493] = 20, + [15562] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83903,21 +84130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(135), 1, + STATE(230), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83925,13 +84152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83960,7 +84187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15585] = 20, + [15654] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83975,21 +84202,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(731), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(374), 1, + STATE(398), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(692), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -83997,13 +84224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84032,7 +84259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15677] = 20, + [15746] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84047,35 +84274,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(1943), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2323), 1, sym_identifier, - STATE(155), 1, - sym_compound_statement, - STATE(899), 1, + ACTIONS(2325), 1, + anon_sym_RPAREN, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1074), 1, sym__declaration_specifiers, - STATE(694), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1414), 1, + sym_variadic_parameter, + STATE(1487), 1, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84104,15 +84332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15769] = 20, + [15840] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -84121,19 +84347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(731), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(469), 1, + STATE(365), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(699), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -84141,13 +84369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84176,7 +84404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15861] = 20, + [15932] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84191,21 +84419,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(551), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(370), 1, + STATE(137), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(685), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -84213,13 +84441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84248,15 +84476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [15953] = 20, + [16024] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -84265,19 +84491,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(499), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(460), 1, + STATE(353), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -84285,13 +84513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84320,7 +84548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16045] = 20, + [16116] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84335,21 +84563,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(146), 1, + STATE(382), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(683), 2, + STATE(688), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -84357,13 +84585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84392,7 +84620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16137] = 20, + [16208] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84407,21 +84635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(219), 1, + STATE(140), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(699), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -84429,13 +84657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84464,7 +84692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16229] = 20, + [16300] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84479,21 +84707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(551), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(373), 1, + STATE(156), 1, sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(691), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -84501,13 +84729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84536,7 +84764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16321] = 20, + [16392] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84551,35 +84779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(1943), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1945), 1, + anon_sym_RPAREN, + ACTIONS(2011), 1, sym_identifier, - STATE(206), 1, - sym_compound_statement, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1074), 1, sym__declaration_specifiers, - STATE(701), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1487), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84608,18 +84836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16413] = 5, + [16484] = 3, ACTIONS(3), 1, sym_comment, - STATE(676), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1963), 13, + ACTIONS(2329), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84633,7 +84853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1957), 30, + ACTIONS(2327), 36, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84645,9 +84865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84664,18 +84890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [16474] = 5, + [16541] = 3, ACTIONS(3), 1, sym_comment, - STATE(676), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1963), 13, + ACTIONS(2333), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84689,7 +84907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1957), 30, + ACTIONS(2331), 36, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84701,9 +84919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84720,10 +84944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [16535] = 3, + [16598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 15, + ACTIONS(2335), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84739,7 +84963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2310), 34, + ACTIONS(2337), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84774,7 +84998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [16592] = 19, + [16655] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84791,17 +85015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - ACTIONS(2023), 1, + ACTIONS(1943), 1, anon_sym_DOT_DOT_DOT, - STATE(899), 1, + ACTIONS(2011), 1, + sym_identifier, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1181), 1, + STATE(1074), 1, sym__declaration_specifiers, - STATE(1534), 2, + STATE(1547), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(43), 4, @@ -84809,13 +85033,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [16744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 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(2339), 36, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [16801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 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(2343), 36, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [16858] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1943), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2347), 1, + sym_identifier, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1074), 1, + sym__declaration_specifiers, + STATE(1547), 1, + sym_parameter_declaration, + STATE(1629), 1, + sym_variadic_parameter, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84844,48 +85247,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16681] = 19, + [16949] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, + ACTIONS(2349), 1, sym_identifier, - ACTIONS(2321), 1, + ACTIONS(2358), 1, anon_sym___attribute__, - ACTIONS(2324), 1, + ACTIONS(2361), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2327), 1, + ACTIONS(2364), 1, anon_sym___declspec, - ACTIONS(2330), 1, + ACTIONS(2367), 1, anon_sym_LBRACE, - ACTIONS(2335), 1, + ACTIONS(2372), 1, sym_primitive_type, - ACTIONS(2338), 1, + ACTIONS(2375), 1, anon_sym_enum, - ACTIONS(2341), 1, + ACTIONS(2378), 1, anon_sym_struct, - ACTIONS(2344), 1, + ACTIONS(2381), 1, anon_sym_union, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1219), 1, sym__declaration_specifiers, - STATE(708), 2, + STATE(712), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(2332), 4, + ACTIONS(2369), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84893,7 +85296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2315), 9, + ACTIONS(2352), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -84903,7 +85306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2318), 10, + ACTIONS(2355), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -84914,10 +85317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16770] = 3, + [17038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 15, + ACTIONS(2384), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84933,7 +85336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2349), 34, + ACTIONS(2386), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84968,68 +85371,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [16827] = 20, + [17095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2390), 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(2388), 40, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2351), 1, - sym_identifier, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1181), 1, - sym__declaration_specifiers, - STATE(1534), 1, - sym_parameter_declaration, - STATE(1618), 1, - sym_variadic_parameter, - ACTIONS(43), 4, + 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, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85039,12 +85410,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [16918] = 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [17152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_EQ, - STATE(676), 1, + STATE(678), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -85052,7 +85436,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1974), 10, + ACTIONS(1915), 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(1909), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85063,7 +85477,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1963), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17213] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(678), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1915), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85076,7 +85505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 19, + anon_sym_EQ, + ACTIONS(1909), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85090,70 +85520,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [16982] = 5, + [17274] = 7, ACTIONS(3), 1, sym_comment, - STATE(712), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2357), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2353), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2355), 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, + ACTIONS(1925), 1, + anon_sym_EQ, + STATE(678), 1, + sym_string_literal, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [17041] = 3, + ACTIONS(1929), 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(1915), 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(1909), 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, + [17338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 14, + ACTIONS(2394), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85168,7 +85612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2360), 33, + ACTIONS(2392), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85202,10 +85646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17096] = 3, + [17393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 14, + ACTIONS(2398), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85220,7 +85664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2364), 33, + ACTIONS(2396), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85254,10 +85698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17151] = 3, + [17448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 14, + ACTIONS(2402), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85272,7 +85716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2368), 33, + ACTIONS(2400), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85306,10 +85750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17206] = 3, + [17503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 14, + ACTIONS(2406), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85324,7 +85768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2372), 33, + ACTIONS(2404), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85358,10 +85802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17261] = 3, + [17558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 14, + ACTIONS(2410), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85376,7 +85820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2376), 33, + ACTIONS(2408), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85410,10 +85854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17316] = 3, + [17613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 14, + ACTIONS(2414), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85428,7 +85872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2380), 33, + ACTIONS(2412), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85462,10 +85906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17371] = 3, + [17668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 14, + ACTIONS(2418), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85480,7 +85924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2384), 33, + ACTIONS(2416), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85514,10 +85958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17426] = 3, + [17723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 14, + ACTIONS(2422), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85532,7 +85976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2388), 33, + ACTIONS(2420), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85566,10 +86010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17481] = 3, + [17778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 14, + ACTIONS(2426), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85584,7 +86028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2392), 33, + ACTIONS(2424), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85618,10 +86062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17536] = 3, + [17833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 14, + ACTIONS(2430), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85636,7 +86080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2396), 33, + ACTIONS(2428), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85670,7 +86114,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [17591] = 17, + [17888] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(728), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2436), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2432), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2434), 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, + [17947] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -85687,26 +86185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1280), 1, + STATE(1244), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85735,7 +86233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17673] = 17, + [18029] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -85752,26 +86250,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1286), 1, + STATE(1236), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85800,7 +86298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17755] = 17, + [18111] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -85817,26 +86315,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, + STATE(1231), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85865,7 +86363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17837] = 17, + [18193] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -85882,26 +86380,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1281), 1, + STATE(1230), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85930,7 +86428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17919] = 17, + [18275] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -85947,26 +86445,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1283), 1, + STATE(1269), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85995,7 +86493,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18001] = 17, + [18357] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1947), 1, + anon_sym_LPAREN2, + ACTIONS(1949), 1, + anon_sym_STAR, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2447), 1, + anon_sym_LBRACK, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1288), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1383), 1, + sym__abstract_declarator, + STATE(1387), 1, + sym_parameter_list, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2441), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(903), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(942), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1401), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [18447] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -86012,11 +86579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, STATE(1271), 1, sym__declaration_specifiers, @@ -86025,13 +86592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86060,7 +86627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18083] = 17, + [18529] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -86077,26 +86644,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1290), 1, + STATE(1254), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86125,7 +86692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18165] = 17, + [18611] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -86142,26 +86709,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1278), 1, + STATE(1268), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(744), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86190,7 +86757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18247] = 17, + [18693] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -86207,26 +86774,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(899), 1, + STATE(777), 1, sym__type_specifier, - STATE(939), 1, + STATE(815), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1282), 1, + STATE(1264), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [18775] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + STATE(777), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1265), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(744), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [18857] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1925), 1, + anon_sym_EQ, + ACTIONS(1931), 1, + anon_sym_COLON, + STATE(678), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1929), 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(1915), 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(1909), 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, + [18920] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2453), 1, + anon_sym_LBRACE, + STATE(794), 1, + sym_field_declaration_list, + STATE(831), 1, + sym_attribute_specifier, + ACTIONS(2451), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2449), 34, + 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, + sym_primitive_type, + sym_identifier, + [18981] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1925), 1, + anon_sym_EQ, + ACTIONS(1935), 1, + anon_sym_COLON, + STATE(678), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1929), 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(1915), 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(1909), 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, + [19044] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1925), 1, + anon_sym_EQ, + ACTIONS(1939), 1, + anon_sym_COLON, + STATE(678), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1929), 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(1915), 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(1909), 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, + [19107] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2011), 1, + sym_identifier, + STATE(776), 1, + sym__type_specifier, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(741), 7, + STATE(680), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86255,52 +87169,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18329] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - STATE(899), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1289), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(741), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, + [19186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 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(2455), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [19239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2459), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86309,8 +87264,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2455), 38, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86320,14 +87306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18411] = 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19345] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + ACTIONS(1925), 1, anon_sym_EQ, - ACTIONS(1972), 1, + ACTIONS(1937), 1, anon_sym_COLON, - STATE(676), 1, + STATE(678), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -86335,7 +87334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1974), 10, + ACTIONS(1929), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86346,7 +87345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1963), 12, + ACTIONS(1915), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86359,7 +87358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 15, + ACTIONS(1909), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86375,14 +87374,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18474] = 8, + [19408] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2453), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_field_declaration_list, + STATE(840), 1, + sym_attribute_specifier, + ACTIONS(2465), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2463), 34, + 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, + sym_primitive_type, + sym_identifier, + [19469] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + ACTIONS(1925), 1, anon_sym_EQ, - ACTIONS(1981), 1, + ACTIONS(1933), 1, anon_sym_COLON, - STATE(676), 1, + STATE(678), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -86390,7 +87443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1974), 10, + ACTIONS(1929), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86401,7 +87454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1963), 12, + ACTIONS(1915), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86414,7 +87467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 15, + ACTIONS(1909), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86430,14 +87483,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18537] = 8, + [19532] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2453), 1, + anon_sym_LBRACE, + STATE(788), 1, + sym_field_declaration_list, + STATE(844), 1, + sym_attribute_specifier, + ACTIONS(2469), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2467), 34, + 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, + sym_primitive_type, + sym_identifier, + [19593] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + ACTIONS(1925), 1, anon_sym_EQ, - ACTIONS(1979), 1, + ACTIONS(1927), 1, anon_sym_COLON, - STATE(676), 1, + STATE(678), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -86445,7 +87552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1974), 10, + ACTIONS(1929), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86456,7 +87563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1963), 12, + ACTIONS(1915), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86469,7 +87576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 15, + ACTIONS(1909), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86485,33 +87592,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18600] = 8, + [19656] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_EQ, - ACTIONS(1983), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2453), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_field_declaration_list, + STATE(823), 1, + sym_attribute_specifier, + ACTIONS(2473), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(676), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1974), 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(1963), 12, + ACTIONS(2471), 34, + 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, + sym_primitive_type, + sym_identifier, + [19717] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2453), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_field_declaration_list, + STATE(817), 1, + sym_attribute_specifier, + ACTIONS(2477), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2475), 34, + 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, + sym_primitive_type, + sym_identifier, + [19778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2319), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86524,8 +87716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 15, + anon_sym_EQ, + ACTIONS(2321), 31, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86534,39 +87728,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18663] = 3, + [19830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 19, + ACTIONS(1877), 6, + anon_sym_COMMA, + anon_sym_RPAREN, 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(2400), 26, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1875), 38, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86575,37 +87793,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1879), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2481), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2479), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [18716] = 8, + [19986] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2491), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2493), 1, + anon_sym_AMP_AMP, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2497), 1, + anon_sym_CARET, + ACTIONS(2499), 1, + anon_sym_AMP, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2511), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(2513), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2503), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2505), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2507), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2483), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_COLON, - STATE(676), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1974), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86616,7 +87961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1963), 12, + [20071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86629,8 +87977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 15, + anon_sym_EQ, + ACTIONS(2519), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86639,84 +87989,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - [18779] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 1, anon_sym___attribute__, - ACTIONS(2417), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2420), 1, - anon_sym___declspec, - ACTIONS(2406), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(739), 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(2408), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2411), 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(2404), 11, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_RBRACE, anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [18844] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_EQ, - ACTIONS(1987), 1, + anon_sym_RBRACK, anon_sym_COLON, - STATE(676), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1974), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86727,7 +88005,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1963), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20122] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2525), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86740,9 +88034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 15, + anon_sym_EQ, + ACTIONS(2523), 25, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -86750,47 +88045,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK, + 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [18907] = 16, + [20181] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 1, - sym_identifier, - STATE(901), 1, - sym__type_specifier, - STATE(939), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(739), 7, + ACTIONS(2529), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(680), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86808,6 +88094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + ACTIONS(2527), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, ACTIONS(45), 10, anon_sym_extern, anon_sym_static, @@ -86819,10 +88115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18986] = 3, + [20244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 13, + ACTIONS(2533), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86836,7 +88132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2286), 31, + ACTIONS(2531), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86848,7 +88144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -86868,70 +88163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2425), 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(2423), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19089] = 8, + [20295] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2431), 13, + ACTIONS(2537), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86945,7 +88192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2427), 23, + ACTIONS(2535), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -86969,62 +88216,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19150] = 7, + [20356] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2541), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2441), 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(2439), 25, + anon_sym_SEMI, + STATE(680), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2539), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(832), 1, + sym_attribute_specifier, + ACTIONS(2545), 7, 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_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [19209] = 3, + ACTIONS(2543), 34, + 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, + sym_primitive_type, + sym_identifier, + [20474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(2549), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87038,7 +88337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2443), 30, + ACTIONS(2547), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87050,9 +88349,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87069,140 +88368,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19260] = 20, + [20525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2457), 1, - anon_sym_PIPE, - ACTIONS(2459), 1, - anon_sym_CARET, - ACTIONS(2461), 1, - anon_sym_AMP, - ACTIONS(2471), 1, - anon_sym_EQ, - ACTIONS(2473), 1, - anon_sym_QMARK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2447), 16, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(830), 1, + sym_attribute_specifier, + ACTIONS(2553), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, 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, - [19345] = 20, + ACTIONS(2551), 34, + 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, + sym_primitive_type, + sym_identifier, + [20580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(824), 1, + sym_attribute_specifier, + ACTIONS(2557), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2457), 1, - anon_sym_PIPE, - ACTIONS(2459), 1, - anon_sym_CARET, - ACTIONS(2461), 1, - anon_sym_AMP, - ACTIONS(2473), 1, - anon_sym_QMARK, - ACTIONS(2477), 1, - anon_sym_EQ, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2475), 16, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2555), 34, + 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, + sym_primitive_type, + sym_identifier, + [20635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(816), 1, + sym_attribute_specifier, + ACTIONS(2561), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, 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, - [19430] = 3, + ACTIONS(2559), 34, + 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, + sym_primitive_type, + sym_identifier, + [20690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 13, + ACTIONS(2565), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87216,7 +88535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2479), 30, + ACTIONS(2563), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87247,86 +88566,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19481] = 3, + [20741] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2497), 1, anon_sym_CARET, + ACTIONS(2499), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2483), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2509), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2503), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2505), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2507), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - [19532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2489), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2569), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2487), 30, + ACTIONS(2567), 19, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87339,51 +88627,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19583] = 11, + [20818] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, + ACTIONS(2487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2503), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2505), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2507), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2451), 3, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2493), 6, + ACTIONS(2569), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2491), 23, + ACTIONS(2567), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -87399,10 +88685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19650] = 3, + [20889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 13, + ACTIONS(2573), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87416,7 +88702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2495), 30, + ACTIONS(2571), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87447,10 +88733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19701] = 3, + [20940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 13, + ACTIONS(2577), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87464,7 +88750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2499), 30, + ACTIONS(2575), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87495,70 +88781,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19752] = 3, + [20991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 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(2503), 30, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2581), 5, 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_STAR, anon_sym_SEMI, + STATE(762), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2579), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21054] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2585), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2583), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19803] = 8, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21117] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2509), 13, + ACTIONS(2569), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87572,7 +88918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2507), 23, + ACTIONS(2567), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -87596,88 +88942,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19864] = 3, + [21178] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2491), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2493), 1, + anon_sym_AMP_AMP, + ACTIONS(2495), 1, anon_sym_PIPE, + ACTIONS(2497), 1, anon_sym_CARET, + ACTIONS(2499), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2513), 1, + anon_sym_QMARK, + ACTIONS(2589), 1, anon_sym_EQ, - ACTIONS(2511), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(775), 1, + sym_argument_list, + ACTIONS(2487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2503), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2505), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2507), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - [19915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2517), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2515), 30, + ACTIONS(2587), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87688,84 +89007,122 @@ 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, - [19966] = 13, + [21263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2595), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2593), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2491), 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2591), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [21318] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(834), 1, + sym_attribute_specifier, + ACTIONS(2600), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [20037] = 8, + ACTIONS(2598), 34, + 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, + sym_primitive_type, + sym_identifier, + [21373] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2493), 13, + ACTIONS(2604), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87779,7 +89136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2491), 23, + ACTIONS(2602), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -87803,70 +89160,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20098] = 3, + [21434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 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(2519), 30, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(839), 1, + sym_attribute_specifier, + ACTIONS(2608), 7, 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_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [20149] = 8, + ACTIONS(2606), 34, + 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, + sym_primitive_type, + sym_identifier, + [21489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2525), 13, + ACTIONS(2612), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87880,9 +89227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2523), 23, + ACTIONS(2610), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87892,6 +89240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87904,55 +89254,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20210] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21540] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2453), 1, + ACTIONS(2491), 1, anon_sym_PIPE_PIPE, - ACTIONS(2455), 1, + ACTIONS(2493), 1, anon_sym_AMP_AMP, - ACTIONS(2457), 1, + ACTIONS(2495), 1, anon_sym_PIPE, - ACTIONS(2459), 1, + ACTIONS(2497), 1, anon_sym_CARET, - ACTIONS(2461), 1, + ACTIONS(2499), 1, anon_sym_AMP, - ACTIONS(2473), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2513), 1, anon_sym_QMARK, - ACTIONS(2529), 1, + ACTIONS(2616), 1, anon_sym_EQ, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, + ACTIONS(2487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2463), 2, + ACTIONS(2501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2465), 2, + ACTIONS(2503), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2467), 2, + ACTIONS(2505), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2469), 2, + ACTIONS(2507), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2451), 3, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2527), 16, + ACTIONS(2614), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -87969,10 +89323,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20295] = 3, + [21625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 13, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(841), 1, + sym_attribute_specifier, + ACTIONS(2620), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2618), 34, + 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, + sym_primitive_type, + sym_identifier, + [21680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87986,7 +89390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2531), 30, + ACTIONS(2622), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88017,38 +89421,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20346] = 3, + [21731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 13, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(822), 1, + sym_attribute_specifier, + ACTIONS(2628), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2626), 34, + 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, + sym_primitive_type, + sym_identifier, + [21786] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2499), 1, + anon_sym_AMP, + ACTIONS(2509), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2487), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2503), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2505), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2507), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2569), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2535), 30, + ACTIONS(2567), 19, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -88061,14 +89531,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, - [20397] = 3, + [21861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 13, + ACTIONS(2632), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88082,7 +89548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2539), 30, + ACTIONS(2630), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88094,9 +89560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -88113,99 +89579,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20448] = 10, + [21912] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 8, + ACTIONS(2495), 1, anon_sym_PIPE, + ACTIONS(2497), 1, anon_sym_CARET, + ACTIONS(2499), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2569), 1, anon_sym_EQ, - ACTIONS(2491), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(775), 1, + sym_argument_list, + ACTIONS(2487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2503), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2505), 2, 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, - [20513] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2507), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2545), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2543), 23, + ACTIONS(2567), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -88221,15 +89641,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20574] = 3, + [21991] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 13, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2487), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2569), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88238,10 +89672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2547), 30, + ACTIONS(2567), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -88251,8 +89684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -88265,14 +89696,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, - [20625] = 3, + [22056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 13, + ACTIONS(2636), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88286,7 +89713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2551), 30, + ACTIONS(2634), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88317,25 +89744,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20676] = 3, + [22107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 9, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(836), 1, + sym_attribute_specifier, + ACTIONS(2640), 7, 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(2555), 34, + ACTIONS(2638), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -88359,70 +89793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [20727] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2491), 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, - [20790] = 3, + [22162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 13, + ACTIONS(2644), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88436,7 +89811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2559), 30, + ACTIONS(2642), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88467,54 +89842,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20841] = 18, + [22213] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2457), 1, - anon_sym_PIPE, - ACTIONS(2459), 1, - anon_sym_CARET, - ACTIONS(2461), 1, - anon_sym_AMP, - ACTIONS(2493), 1, - anon_sym_EQ, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, + ACTIONS(2487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2469), 2, + ACTIONS(2507), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2451), 3, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2491), 18, + ACTIONS(2569), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2567), 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, @@ -88530,62 +89898,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20922] = 7, + [22280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_EQ, - STATE(676), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2565), 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(1963), 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(1957), 14, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(819), 1, + sym_attribute_specifier, + ACTIONS(2648), 7, + 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_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2646), 34, + 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_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [20981] = 3, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [22335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2652), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88599,7 +89965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2567), 30, + ACTIONS(2650), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88630,10 +89996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21032] = 3, + [22386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2656), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88647,7 +90013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2571), 30, + ACTIONS(2654), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88678,58 +90044,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21083] = 17, + [22437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_PIPE, - ACTIONS(2459), 1, - anon_sym_CARET, - ACTIONS(2461), 1, - anon_sym_AMP, - ACTIONS(2493), 1, + ACTIONS(2658), 1, anon_sym_EQ, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2491), 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, + STATE(678), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2660), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88740,10 +90068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2577), 13, + ACTIONS(1915), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88756,10 +90081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2575), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1909), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88767,76 +90089,45 @@ 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_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21213] = 16, + [22496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2459), 1, - anon_sym_CARET, - ACTIONS(2461), 1, - anon_sym_AMP, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, + ACTIONS(2664), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 2, - anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2491), 19, + ACTIONS(2662), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -88849,47 +90140,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21290] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22547] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_AMP, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2449), 2, + ACTIONS(2487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2463), 2, + ACTIONS(2501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2465), 2, + ACTIONS(2503), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2467), 2, + ACTIONS(2505), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2469), 2, + ACTIONS(2507), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2451), 3, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2493), 3, + ACTIONS(2569), 4, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(2491), 19, + ACTIONS(2567), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -88909,50 +90203,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21365] = 14, + [22620] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 3, + ACTIONS(2489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2493), 4, + ACTIONS(2569), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2491), 19, + ACTIONS(2567), 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, @@ -88968,723 +90257,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21438] = 5, + [22683] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_EQ, - ACTIONS(1974), 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(1963), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2493), 1, + anon_sym_AMP_AMP, + ACTIONS(2495), 1, anon_sym_PIPE, + ACTIONS(2497), 1, anon_sym_CARET, + ACTIONS(2499), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1957), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2569), 1, + anon_sym_EQ, + STATE(775), 1, + sym_argument_list, + ACTIONS(2487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2503), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2505), 2, 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, - [21492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2581), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2579), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1432), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1442), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1440), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1416), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1452), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1456), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1490), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2583), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2589), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2587), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2593), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2591), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21982] = 3, + anon_sym_LT_EQ, + ACTIONS(2507), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2567), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22764] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2668), 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(2666), 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___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22031] = 3, + 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, + [22825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2599), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2672), 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(2670), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22080] = 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2603), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2676), 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(2674), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22129] = 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22927] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2607), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2680), 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(2678), 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___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22178] = 3, + 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, + [22988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2684), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2611), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2682), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89703,34 +90568,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22227] = 3, + [23038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2688), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2615), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2686), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89749,34 +90615,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22276] = 3, + [23088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2692), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2619), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2690), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89795,43 +90662,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22325] = 3, + [23138] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2623), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1310), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(845), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -89840,33 +90725,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22374] = 3, + [23218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2623), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(2706), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2704), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89885,32 +90771,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22421] = 3, + [23268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2583), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(1925), 1, + anon_sym_EQ, + ACTIONS(1929), 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(1915), 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(1909), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, + anon_sym_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, + [23322] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2708), 1, + sym_identifier, + ACTIONS(2717), 1, + sym_primitive_type, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2715), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2711), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2713), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89928,33 +90872,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22468] = 3, + [23380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2721), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2607), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2719), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89973,32 +90918,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22515] = 3, + [23430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2725), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2615), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2723), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90017,32 +90965,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22562] = 3, + [23480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2729), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2619), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2727), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90061,22 +91012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22609] = 7, + [23530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_field_declaration_list, - STATE(942), 1, - sym_attribute_specifier, - ACTIONS(2629), 7, + ACTIONS(2733), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90084,11 +91024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2627), 28, + ACTIONS(2731), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90113,28 +91060,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [22664] = 3, + [23580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(2737), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1456), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2735), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90153,32 +91106,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22711] = 3, + [23630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2741), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2739), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90197,35 +91153,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22758] = 6, + [23680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, - anon_sym___attribute__, - ACTIONS(2640), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2643), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2635), 4, + ACTIONS(2745), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2633), 29, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2743), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90244,14 +91200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22811] = 3, + [23730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 7, + ACTIONS(2749), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90259,12 +91212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2400), 32, + ACTIONS(2747), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90288,92 +91247,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22858] = 19, + [23780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, - anon_sym_LPAREN2, - ACTIONS(2029), 1, - anon_sym_STAR, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(2653), 1, - anon_sym_LBRACK, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1262), 1, - sym__declarator, - STATE(1365), 1, - sym__abstract_declarator, - STATE(1385), 1, - sym_parameter_list, - STATE(1698), 1, - sym_ms_based_modifier, - ACTIONS(2647), 2, + ACTIONS(2753), 7, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(983), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(990), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1371), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [22937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2601), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2599), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2751), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90392,32 +91294,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22984] = 3, + [23830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(1923), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2591), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(1907), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90436,41 +91342,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23031] = 3, + [23882] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2603), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1310), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90479,33 +91405,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23078] = 3, + [23962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(2760), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1452), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2758), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90524,22 +91451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23125] = 7, + [24012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(857), 1, - sym_field_declaration_list, - STATE(930), 1, - sym_attribute_specifier, - ACTIONS(2657), 7, + ACTIONS(2764), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90547,11 +91463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2655), 28, + ACTIONS(2762), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90574,30 +91497,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [23180] = 3, + sym_primitive_type, + sym_identifier, + [24062] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1313), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(843), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(979), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [24142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2768), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2611), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2766), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90616,32 +91607,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23227] = 3, + [24192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, + ACTIONS(2772), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2770), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90660,32 +91654,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23274] = 3, + [24242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1442), 1, + ACTIONS(2776), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1440), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2774), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90704,32 +91701,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23321] = 3, + [24292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(2780), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2587), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2778), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90748,32 +91748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23368] = 3, + [24342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 1, + ACTIONS(2784), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1432), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2782), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90792,32 +91795,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23415] = 3, + [24392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(2788), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1416), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2786), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90836,22 +91842,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23462] = 7, + [24442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(862), 1, - sym_field_declaration_list, - STATE(943), 1, - sym_attribute_specifier, - ACTIONS(2661), 7, + ACTIONS(2792), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90859,11 +91854,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2659), 28, + ACTIONS(2790), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90888,28 +91890,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [23517] = 3, + [24492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2796), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2579), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2794), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90928,35 +91936,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23564] = 6, + [24542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 1, - anon_sym___attribute__, - ACTIONS(2670), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2673), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2665), 4, + ACTIONS(2800), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2663), 29, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2798), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90975,22 +91983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23617] = 7, + [24592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_field_declaration_list, - STATE(944), 1, - sym_attribute_specifier, - ACTIONS(2677), 7, + ACTIONS(2804), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90998,11 +91995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2675), 28, + ACTIONS(2802), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91027,18 +92031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [23672] = 7, + [24642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2631), 1, - anon_sym_LBRACE, - STATE(888), 1, - sym_field_declaration_list, - STATE(933), 1, - sym_attribute_specifier, - ACTIONS(2681), 7, + ACTIONS(2808), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -91046,11 +92042,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2679), 28, + ACTIONS(2806), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91075,23 +92078,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [23727] = 3, + [24692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 7, + ACTIONS(2812), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2683), 32, + anon_sym_COLON, + ACTIONS(2810), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91115,100 +92124,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23774] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2529), 1, - anon_sym_EQ, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(2693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2699), 1, - anon_sym_CARET, - ACTIONS(2701), 1, - anon_sym_AMP, - ACTIONS(2711), 1, - anon_sym_QMARK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2527), 11, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23854] = 3, + [24742] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1879), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1312), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(826), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(981), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2700), 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, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91217,185 +92187,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23900] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2431), 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(2427), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23956] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2545), 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(2543), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24012] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2525), 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(2523), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24068] = 3, + [24822] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2713), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1312), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(981), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2700), 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, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91404,22 +92249,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24114] = 3, + [24902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 2, + ACTIONS(2816), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2308), 36, + anon_sym_COLON, + ACTIONS(2814), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -91430,6 +92276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91448,663 +92295,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [24160] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2471), 1, - anon_sym_EQ, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(2693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2699), 1, - anon_sym_CARET, - ACTIONS(2701), 1, - anon_sym_AMP, - ACTIONS(2711), 1, - anon_sym_QMARK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2447), 11, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24240] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2491), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24300] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2491), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24362] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2491), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24428] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2491), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24496] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2441), 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(2439), 20, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [24550] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2493), 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(2491), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24606] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(2701), 1, - anon_sym_AMP, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2491), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24676] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(2699), 1, - anon_sym_CARET, - ACTIONS(2701), 1, - anon_sym_AMP, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2493), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2491), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24748] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_EQ, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2699), 1, - anon_sym_CARET, - ACTIONS(2701), 1, - anon_sym_AMP, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2491), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24822] = 8, + [24952] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2509), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2698), 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(2507), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24878] = 18, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1307), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(980), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [25032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_EQ, - ACTIONS(2687), 1, + ACTIONS(2820), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2699), 1, - anon_sym_CARET, - ACTIONS(2701), 1, - anon_sym_AMP, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2491), 13, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24954] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2818), 35, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [25082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 6, + ACTIONS(2824), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1875), 32, + anon_sym_COLON, + ACTIONS(2822), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -92128,136 +92451,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + sym_identifier, + [25132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2826), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [25000] = 9, + [25181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2493), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2491), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25058] = 20, + ACTIONS(2832), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2830), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2477), 1, - anon_sym_EQ, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(2693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2699), 1, - anon_sym_CARET, - ACTIONS(2701), 1, - anon_sym_AMP, - ACTIONS(2711), 1, - anon_sym_QMARK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2475), 11, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25138] = 3, + ACTIONS(1456), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1454), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(1448), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2347), 36, + ACTIONS(1446), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1474), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1462), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2836), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2834), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2838), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2844), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2842), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___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, @@ -92284,17 +92866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25184] = 3, + [25573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 2, + ACTIONS(2848), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1456), 35, + ACTIONS(2846), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -92326,17 +92912,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25229] = 3, + [25622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(1440), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1452), 36, + ACTIONS(1438), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -92368,20 +92958,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25274] = 5, + [25671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(2852), 1, anon_sym_LBRACK_LBRACK, - STATE(673), 1, - sym_string_literal, - ACTIONS(2717), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2713), 30, + ACTIONS(2850), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92412,17 +93004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25323] = 3, + [25720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2856), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2591), 36, + ACTIONS(2854), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -92454,31 +93050,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25368] = 5, + [25769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(938), 1, - sym_attribute_specifier, - ACTIONS(2721), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2860), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2719), 28, + ACTIONS(2858), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___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, @@ -92497,18 +93092,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25417] = 3, + [25818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2864), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2583), 36, + ACTIONS(2862), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -92540,31 +93142,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25462] = 5, + [25867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(936), 1, - sym_attribute_specifier, - ACTIONS(2725), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2868), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2723), 28, + ACTIONS(2866), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___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, @@ -92583,18 +93184,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25511] = 3, + [25916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 36, + ACTIONS(1430), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -92626,17 +93234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25556] = 3, + [25965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(2872), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2587), 36, + ACTIONS(2870), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -92668,31 +93280,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25601] = 5, + [26014] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(929), 1, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2874), 1, + anon_sym_SEMI, + ACTIONS(2585), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, sym_attribute_specifier, - ACTIONS(2729), 7, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2583), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26076] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2876), 1, + anon_sym_SEMI, + ACTIONS(2585), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2583), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26138] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym___attribute__, + ACTIONS(2885), 1, + anon_sym_LBRACE, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(837), 1, + sym_attribute_specifier, + STATE(973), 1, + sym_enumerator_list, + ACTIONS(2880), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2727), 28, + ACTIONS(2878), 29, + 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, + sym_identifier, + [26196] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2889), 1, + anon_sym_SEMI, + ACTIONS(2585), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2583), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26258] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2891), 1, + anon_sym_SEMI, + ACTIONS(2585), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2583), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26320] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2893), 1, + anon_sym_SEMI, + ACTIONS(2585), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2583), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26382] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LBRACE, + ACTIONS(2899), 1, + anon_sym___attribute__, + STATE(818), 1, + sym_attribute_specifier, + STATE(944), 1, + sym_enumerator_list, + ACTIONS(2897), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2895), 29, 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, + sym_identifier, + [26437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2830), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92711,63 +93678,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25650] = 3, + [26484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 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(2443), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25695] = 5, + ACTIONS(2852), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2850), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(1448), 1, anon_sym_LBRACK_LBRACK, - STATE(674), 1, - sym_string_literal, - ACTIONS(2717), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2713), 30, + ACTIONS(1446), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92798,75 +93770,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25744] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_EQ, - ACTIONS(2565), 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(1963), 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(1957), 14, - 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_DOT, - anon_sym_DASH_GT, - [25793] = 5, + [26578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2906), 1, anon_sym___attribute__, - STATE(917), 1, - sym_attribute_specifier, - ACTIONS(2733), 7, + ACTIONS(2909), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2912), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2904), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2731), 28, + anon_sym_EQ, + ACTIONS(2902), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92885,32 +93813,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25842] = 5, + [26631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2918), 1, anon_sym___attribute__, - STATE(922), 1, - sym_attribute_specifier, - ACTIONS(2737), 7, + ACTIONS(2921), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2924), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2916), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2914), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1456), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2735), 28, + ACTIONS(1454), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92929,18 +93904,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25891] = 3, + [26731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2836), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2579), 35, + ACTIONS(2834), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -92972,17 +93952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25936] = 3, + [26778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2848), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2611), 36, + ACTIONS(2846), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93014,17 +93996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25981] = 3, + [26825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2844), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2599), 36, + ACTIONS(2842), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93056,17 +94040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26026] = 3, + [26872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(2860), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2603), 36, + ACTIONS(2858), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93098,17 +94084,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26071] = 3, + [26919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 2, + ACTIONS(2864), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2603), 35, + ACTIONS(2862), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93140,17 +94128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26116] = 3, + [26966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 2, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2599), 35, + ACTIONS(1430), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93182,17 +94172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26161] = 3, + [27013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(1440), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2607), 36, + ACTIONS(1438), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93224,17 +94216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26206] = 3, + [27060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 2, + ACTIONS(1476), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2591), 35, + ACTIONS(1474), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93266,17 +94260,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26251] = 3, + [27107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(1464), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2615), 36, + ACTIONS(1462), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93308,17 +94304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26296] = 3, + [27154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 2, + ACTIONS(2840), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2595), 35, + ACTIONS(2838), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93350,17 +94348,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26341] = 3, + [27201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2872), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2619), 36, + ACTIONS(2870), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93392,17 +94392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26386] = 3, + [27248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2828), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2623), 36, + ACTIONS(2826), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93434,20 +94436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26431] = 5, + [27295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(2868), 1, anon_sym_LBRACK_LBRACK, - STATE(671), 1, - sym_string_literal, - ACTIONS(2717), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2713), 30, + ACTIONS(2866), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93478,17 +94480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26480] = 3, + [27342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 2, + ACTIONS(2856), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1488), 35, + ACTIONS(2854), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -93520,119 +94524,582 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26525] = 3, + [27389] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2569), 1, + anon_sym_EQ, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(2932), 1, + anon_sym_AMP_AMP, + ACTIONS(2934), 1, + anon_sym_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET, + ACTIONS(2938), 1, + anon_sym_AMP, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2567), 13, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27465] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2569), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2567), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27523] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2668), 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(2666), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27579] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2604), 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(2602), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27635] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_EQ, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(2932), 1, + anon_sym_AMP_AMP, + ACTIONS(2934), 1, + anon_sym_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET, + ACTIONS(2938), 1, + anon_sym_AMP, + ACTIONS(2948), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2587), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27715] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2569), 1, + anon_sym_EQ, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(2934), 1, + anon_sym_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET, + ACTIONS(2938), 1, + anon_sym_AMP, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2567), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27789] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2680), 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(2678), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27845] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(2936), 1, + anon_sym_CARET, + ACTIONS(2938), 1, + anon_sym_AMP, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2569), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2567), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27917] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26570] = 3, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2569), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2567), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27973] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1456), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26615] = 3, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_AMP, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2569), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2567), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28043] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2611), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(1947), 1, + anon_sym_LPAREN2, + ACTIONS(1949), 1, + anon_sym_STAR, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2447), 1, + anon_sym_LBRACK, + STATE(1293), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1375), 1, + sym__abstract_declarator, + STATE(1387), 1, + sym_parameter_list, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2952), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1401), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93641,27 +95108,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26660] = 3, + [28117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1442), 1, + ACTIONS(2337), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1440), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2335), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -93688,229 +95151,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26705] = 3, + [28163] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1432), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26750] = 3, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2569), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2567), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28231] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1416), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26795] = 5, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2569), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2567), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28297] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(924), 1, - sym_attribute_specifier, - ACTIONS(2741), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2537), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2739), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_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(2535), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28353] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [26844] = 5, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2569), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2567), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(916), 1, - sym_attribute_specifier, - ACTIONS(2745), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2525), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2743), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [26893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2589), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2587), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26938] = 3, + 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(2523), 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_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, + [28469] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2930), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2569), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -93919,15 +95435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2487), 24, - anon_sym_LPAREN2, + ACTIONS(2567), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93940,28 +95454,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [28529] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2616), 1, + anon_sym_EQ, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(2932), 1, + anon_sym_AMP_AMP, + ACTIONS(2934), 1, + anon_sym_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET, + ACTIONS(2938), 1, + anon_sym_AMP, + ACTIONS(2948), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2614), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28609] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2511), 1, + anon_sym_EQ, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(2932), 1, + anon_sym_AMP_AMP, + ACTIONS(2934), 1, + anon_sym_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET, + ACTIONS(2938), 1, + anon_sym_AMP, + ACTIONS(2948), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - [26983] = 5, + ACTIONS(2928), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2940), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2944), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2930), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2483), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(2386), 2, anon_sym_LBRACK_LBRACK, - STATE(670), 1, - sym_string_literal, - ACTIONS(2717), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2713), 30, + anon_sym_LBRACE, + ACTIONS(2384), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -93988,31 +95617,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27032] = 5, + [28735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(932), 1, - sym_attribute_specifier, - ACTIONS(2749), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2864), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2747), 28, + anon_sym_RBRACE, + ACTIONS(2862), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94031,19 +95655,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28780] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, sym_identifier, - [27081] = 3, + ACTIONS(2956), 1, + anon_sym_LPAREN2, + ACTIONS(2958), 1, + anon_sym_STAR, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1305), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1020), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [28851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2481), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2579), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(670), 1, + sym_string_literal, + ACTIONS(2960), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2479), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94074,31 +95758,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27126] = 5, + [28900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(926), 1, - sym_attribute_specifier, - ACTIONS(2753), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2840), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2751), 28, + anon_sym_RBRACE, + ACTIONS(2838), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94117,21 +95796,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27175] = 5, + [28945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(2832), 2, anon_sym_LBRACK_LBRACK, - STATE(672), 1, - sym_string_literal, - ACTIONS(2717), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2713), 30, + anon_sym_RBRACE, + ACTIONS(2830), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94162,13 +95842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27224] = 3, + [28990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 2, + ACTIONS(2872), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2607), 35, + ACTIONS(2870), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94204,13 +95884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27269] = 3, + [29035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 2, + ACTIONS(2852), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1416), 35, + ACTIONS(2850), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94246,33 +95926,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27314] = 9, + [29080] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2755), 3, + ACTIONS(1951), 1, anon_sym___based, - anon_sym_LBRACK, + ACTIONS(2954), 1, sym_identifier, - ACTIONS(2757), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2956), 1, anon_sym_LPAREN2, + ACTIONS(2958), 1, anon_sym_STAR, - anon_sym_SEMI, - STATE(900), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1306), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(915), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1017), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -94283,44 +95981,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [27371] = 9, + [29151] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2759), 3, + ACTIONS(1951), 1, anon_sym___based, - anon_sym_LBRACK, + ACTIONS(2954), 1, sym_identifier, - ACTIONS(2761), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2956), 1, anon_sym_LPAREN2, + ACTIONS(2958), 1, anon_sym_STAR, - anon_sym_SEMI, - STATE(739), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1303), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1016), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -94331,8 +96036,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + [29222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1464), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1462), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94342,33 +96065,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27428] = 9, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29267] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2763), 3, + ACTIONS(1951), 1, anon_sym___based, - anon_sym_LBRACK, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2765), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2962), 1, anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - anon_sym_SEMI, - STATE(903), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1291), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1012), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -94379,8 +96133,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + [29338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 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(2327), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1474), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94390,15 +96204,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27485] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 2, + ACTIONS(2840), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1432), 35, + ACTIONS(2838), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -94432,45 +96259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27530] = 9, + [29473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(1440), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2767), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2769), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(739), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_RBRACE, + ACTIONS(1438), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94480,18 +96288,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27587] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1442), 2, + ACTIONS(2481), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1440), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(672), 1, + sym_string_literal, + ACTIONS(2960), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2479), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94522,60 +96345,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 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(2539), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27677] = 3, + [29567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 2, + ACTIONS(2481), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2583), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(674), 1, + sym_string_literal, + ACTIONS(2960), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2479), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94606,10 +96389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27722] = 3, + [29616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 13, + ACTIONS(2341), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -94623,7 +96406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2423), 24, + ACTIONS(2339), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94648,13 +96431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27767] = 3, + [29661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 2, + ACTIONS(2828), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2623), 35, + ACTIONS(2826), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94690,31 +96473,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27812] = 5, + [29706] = 3, ACTIONS(3), 1, sym_comment, - STATE(909), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2775), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2773), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2844), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2771), 25, + ACTIONS(2842), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94733,16 +96511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27861] = 3, + [29751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 2, + ACTIONS(2848), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1452), 35, + ACTIONS(2846), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -94776,31 +96557,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27906] = 5, + [29796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(946), 1, - sym_attribute_specifier, - ACTIONS(2780), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2836), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2778), 28, + ACTIONS(2834), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94819,14 +96595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27955] = 3, + [29841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 2, + ACTIONS(2836), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2615), 35, + ACTIONS(2834), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94862,13 +96641,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28000] = 3, + [29886] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, + sym_identifier, + ACTIONS(2956), 1, + anon_sym_LPAREN2, + ACTIONS(2958), 1, + anon_sym_STAR, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1305), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(965), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1020), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [29957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 2, + ACTIONS(2848), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2619), 35, + ACTIONS(2846), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94904,37 +96738,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28045] = 3, + [30002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2333), 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(2331), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [30047] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2782), 29, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1289), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1013), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94943,39 +96835,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [28089] = 3, + [30118] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2786), 29, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1293), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(940), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1023), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94984,30 +96890,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [28133] = 3, + [30189] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - anon_sym_SEMI, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1293), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1023), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [30260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2844), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2790), 29, + anon_sym_RBRACE, + ACTIONS(2842), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95026,28 +96983,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28177] = 3, + [30305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 7, + ACTIONS(2970), 1, + anon_sym___attribute__, + STATE(847), 1, + sym_attribute_specifier, + ACTIONS(2968), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2794), 29, + ACTIONS(2966), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___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, @@ -95066,30 +97030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28221] = 3, + [30354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2860), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2798), 29, + ACTIONS(2858), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95108,28 +97069,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28265] = 3, + [30399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 7, + ACTIONS(2977), 1, + anon_sym___attribute__, + STATE(838), 1, + sym_attribute_specifier, + ACTIONS(2975), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2802), 29, + ACTIONS(2973), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___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, @@ -95148,31 +97116,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28309] = 4, + [30448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN2, - ACTIONS(1968), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2658), 1, + anon_sym_EQ, + ACTIONS(2660), 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(1915), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, + 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(1909), 14, + 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_DOT, + anon_sym_DASH_GT, + [30497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2864), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1955), 29, + ACTIONS(2862), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95191,29 +97199,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28355] = 3, + [30542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2860), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2809), 29, + anon_sym_RBRACE, + ACTIONS(2858), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95232,29 +97241,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28399] = 3, + [30587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2856), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2813), 29, + ACTIONS(2854), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95273,29 +97283,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28443] = 3, + [30632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2856), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2817), 29, + anon_sym_RBRACE, + ACTIONS(2854), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95314,29 +97325,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28487] = 3, + [30677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2852), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2821), 29, + ACTIONS(2850), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95355,29 +97367,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28531] = 3, + [30722] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - anon_sym_SEMI, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1289), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(924), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1013), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [30793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2868), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2825), 29, + ACTIONS(2866), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95396,29 +97464,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28575] = 3, + [30838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2828), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2829), 29, + ACTIONS(2826), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95437,70 +97506,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1352), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [28663] = 3, + [30883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2872), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2833), 29, + ACTIONS(2870), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95519,29 +97548,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28707] = 3, + [30928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2832), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2837), 29, + ACTIONS(2830), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95560,29 +97590,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28751] = 3, + [30973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1448), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2841), 29, + anon_sym_RBRACE, + ACTIONS(1446), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95601,29 +97632,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28795] = 3, + [31018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2481), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2845), 29, + STATE(671), 1, + sym_string_literal, + ACTIONS(2960), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2479), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95642,29 +97676,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28839] = 3, + [31067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1448), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2849), 29, + ACTIONS(1446), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95683,29 +97718,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28883] = 3, + [31112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1456), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2853), 29, + ACTIONS(1454), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95724,29 +97760,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28927] = 3, + [31157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2857), 29, + ACTIONS(1430), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95765,29 +97802,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28971] = 3, + [31202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2481), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2861), 29, + STATE(673), 1, + sym_string_literal, + ACTIONS(2960), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2479), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95806,29 +97846,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29015] = 3, + [31251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1440), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2865), 29, + ACTIONS(1438), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95846,30 +97887,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [29059] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31296] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, + sym_identifier, + ACTIONS(2956), 1, + anon_sym_LPAREN2, + ACTIONS(2958), 1, + anon_sym_STAR, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1304), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1018), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [31367] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, + sym_identifier, + ACTIONS(2956), 1, + anon_sym_LPAREN2, + ACTIONS(2958), 1, + anon_sym_STAR, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1304), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(922), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1018), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [31438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2871), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2345), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, + 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(2343), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2869), 29, + anon_sym_RBRACE, + ACTIONS(1430), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95888,38 +98082,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29103] = 3, + [31528] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2873), 29, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1288), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(2445), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(942), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1019), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2443), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95928,36 +98141,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [29147] = 7, + [31599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 1, - sym_identifier, - ACTIONS(2886), 1, - sym_primitive_type, - STATE(909), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2884), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2880), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1476), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2882), 23, + ACTIONS(1474), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95975,28 +98178,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29199] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1464), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2888), 29, + ACTIONS(1462), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96015,29 +98221,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29243] = 3, + [31689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1456), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2892), 29, + anon_sym_RBRACE, + ACTIONS(1454), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96056,28 +98263,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29287] = 3, + [31734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 7, + ACTIONS(2984), 1, + anon_sym___attribute__, + STATE(833), 1, + sym_attribute_specifier, + ACTIONS(2982), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2896), 29, + ACTIONS(2980), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___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, @@ -96096,30 +98310,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [29331] = 3, + [31783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2868), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2900), 29, + anon_sym_RBRACE, + ACTIONS(2866), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96138,28 +98349,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29375] = 3, + [31828] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 7, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2987), 1, anon_sym_COMMA, + ACTIONS(2990), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(1508), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1923), 2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2904), 29, + ACTIONS(1907), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___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, @@ -96178,30 +98397,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [29419] = 3, + [31880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1394), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1396), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [31924] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_LPAREN2, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(1923), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2993), 2, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2908), 29, + ACTIONS(1907), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96219,29 +98481,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [29463] = 3, + [31973] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2755), 1, anon_sym_LPAREN2, + ACTIONS(1923), 2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2912), 29, + ACTIONS(3003), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1907), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___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, @@ -96260,51 +98523,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [29507] = 16, + [32020] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2694), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2696), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(2924), 1, + ACTIONS(2702), 1, sym_primitive_type, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1299), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1800), 1, + STATE(1339), 1, sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1066), 2, + STATE(1827), 1, + sym_ms_call_modifier, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2922), 4, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1353), 5, + STATE(1369), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -96315,49 +98574,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29576] = 16, + [32084] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2694), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2696), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(2924), 1, + ACTIONS(2702), 1, sym_primitive_type, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1301), 1, + STATE(1311), 1, sym__type_declarator, - STATE(1800), 1, + STATE(1339), 1, sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(949), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1071), 2, + STATE(1827), 1, + sym_ms_call_modifier, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2922), 4, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1353), 5, + STATE(1369), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -96368,49 +98624,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29645] = 16, + [32148] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2694), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2696), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(2924), 1, + ACTIONS(2702), 1, sym_primitive_type, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1307), 1, + STATE(1310), 1, sym__type_declarator, - STATE(1800), 1, + STATE(1339), 1, sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1057), 2, + STATE(1827), 1, + sym_ms_call_modifier, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2922), 4, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1353), 5, + STATE(1369), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -96421,49 +98674,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29714] = 16, + [32212] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2694), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2696), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(2924), 1, + ACTIONS(2702), 1, sym_primitive_type, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, STATE(1307), 1, sym__type_declarator, - STATE(1800), 1, + STATE(1339), 1, sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(947), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1057), 2, + STATE(1827), 1, + sym_ms_call_modifier, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2922), 4, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1353), 5, + STATE(1369), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -96474,170 +98724,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29783] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2926), 1, - anon_sym_SEMI, - ACTIONS(2755), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2757), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(900), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [29839] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2928), 1, - anon_sym_SEMI, - ACTIONS(2755), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2757), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(900), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [29895] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2930), 1, - anon_sym_SEMI, - ACTIONS(2755), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2757), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(900), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [29951] = 10, + [32276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2932), 1, - anon_sym_SEMI, - ACTIONS(2755), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2757), 2, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2434), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - STATE(900), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3006), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96647,8 +98747,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2432), 16, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32321] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2483), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [32395] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2569), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2567), 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, + [32459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3035), 30, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96658,32 +98891,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30007] = 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 1, - anon_sym___attribute__, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(2943), 1, - anon_sym_COLON, - STATE(923), 1, - sym_attribute_specifier, - STATE(981), 1, - sym_enumerator_list, - ACTIONS(2936), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2457), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2934), 23, + ACTIONS(3039), 1, + anon_sym_typedef, + ACTIONS(2455), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96701,34 +98937,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30059] = 10, + [32541] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2945), 1, - anon_sym_SEMI, - ACTIONS(2755), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2757), 2, + STATE(1025), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3043), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(900), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(3048), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(988), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3045), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3041), 22, anon_sym___extension__, + 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_const, anon_sym_constexpr, anon_sym_volatile, @@ -96737,41 +98981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [30115] = 7, + sym_primitive_type, + sym_identifier, + [32589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(2951), 1, - anon_sym___attribute__, - STATE(937), 1, - sym_attribute_specifier, - STATE(980), 1, - sym_enumerator_list, - ACTIONS(2949), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2457), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2947), 23, + ACTIONS(3051), 1, + anon_sym_typedef, + ACTIONS(2455), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96789,15 +99016,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30164] = 4, + [32631] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2587), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [32705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, + ACTIONS(2457), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2954), 1, + ACTIONS(3053), 1, anon_sym_typedef, - ACTIONS(2400), 30, + ACTIONS(2455), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96828,13 +99113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30206] = 3, + [32747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(2457), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1350), 30, + ACTIONS(3055), 1, + anon_sym_typedef, + ACTIONS(2455), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96865,14 +99151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30246] = 4, + [32789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, + ACTIONS(3059), 2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2956), 1, - anon_sym_typedef, - ACTIONS(2400), 30, + ACTIONS(3057), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96903,14 +99188,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30288] = 4, + [32829] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2885), 1, + anon_sym_LBRACE, + ACTIONS(3061), 1, + anon_sym_COLON, + STATE(837), 1, + sym_attribute_specifier, + STATE(1011), 1, + sym_enumerator_list, + ACTIONS(2880), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2878), 22, + anon_sym___extension__, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [32879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, + ACTIONS(2457), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2958), 1, + ACTIONS(3063), 1, anon_sym_typedef, - ACTIONS(2400), 30, + ACTIONS(2455), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96941,58 +99268,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30330] = 11, + [32921] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - STATE(753), 1, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2493), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2491), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2614), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [30386] = 3, + [32995] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2885), 1, + anon_sym_LBRACE, + STATE(818), 1, + sym_attribute_specifier, + STATE(1010), 1, + sym_enumerator_list, + ACTIONS(2897), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2895), 22, + anon_sym___extension__, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [33043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 2, + ACTIONS(3065), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2966), 30, + ACTIONS(2914), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97023,13 +99400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30426] = 3, + [33083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 2, + ACTIONS(1396), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2970), 30, + ACTIONS(1394), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97060,14 +99437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30466] = 4, + [33123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, + ACTIONS(3069), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2974), 1, - anon_sym_typedef, - ACTIONS(2400), 30, + anon_sym_LBRACE, + ACTIONS(3067), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97098,88 +99474,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30508] = 20, + [33163] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2527), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [30582] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2493), 6, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2569), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2491), 16, + ACTIONS(2567), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -97196,144 +99519,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [30636] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2447), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [30710] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2491), 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, - [30780] = 12, + [33219] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, + anon_sym_DASH_GT, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 4, + ACTIONS(2569), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2491), 14, + ACTIONS(2567), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -97343,199 +99556,207 @@ 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, - [30838] = 17, + [33273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2491), 9, + ACTIONS(2567), 8, 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, - [30906] = 14, + [33343] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - STATE(753), 1, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2493), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2491), 12, + ACTIONS(2567), 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_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [30968] = 15, + [33411] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2569), 1, + anon_sym_PIPE, + ACTIONS(3013), 1, anon_sym_SLASH, - STATE(753), 1, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2493), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2491), 10, + ACTIONS(2567), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [31032] = 16, + [33479] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2569), 1, anon_sym_PIPE, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2491), 10, + ACTIONS(2567), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -97546,251 +99767,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [31098] = 17, + [33545] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_PIPE, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2491), 9, + ACTIONS(2569), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2567), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [31166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2996), 1, - anon_sym_typedef, - ACTIONS(2400), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2663), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31248] = 20, + [33603] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(2569), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2475), 6, + ACTIONS(2567), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [31322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3002), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3000), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31361] = 5, + anon_sym_QMARK, + [33665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(918), 1, + STATE(838), 1, sym_attribute_specifier, - ACTIONS(3006), 6, + ACTIONS(2975), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3004), 23, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2973), 22, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym___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_const, anon_sym_constexpr, anon_sym_volatile, @@ -97799,36 +99896,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [31404] = 5, + [33707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(914), 1, + STATE(847), 1, sym_attribute_specifier, - ACTIONS(3013), 6, + ACTIONS(2968), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3011), 23, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2966), 22, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym___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_const, anon_sym_constexpr, anon_sym_volatile, @@ -97837,353 +99933,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [31447] = 5, + [33749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(921), 1, + STATE(833), 1, sym_attribute_specifier, - ACTIONS(3020), 6, + ACTIONS(2982), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3018), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [31490] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 1, - anon_sym_LPAREN2, - ACTIONS(2029), 1, - anon_sym_STAR, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(2653), 1, anon_sym_LBRACK, - STATE(1254), 1, - sym__declarator, - STATE(1359), 1, - sym__abstract_declarator, - STATE(1385), 1, - sym_parameter_list, - STATE(1698), 1, - sym_ms_based_modifier, - ACTIONS(3025), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1371), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31553] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1254), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(987), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1107), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31613] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1294), 1, - sym__field_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31673] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1294), 1, - sym__field_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(991), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31733] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1261), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31793] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1287), 1, - sym__field_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(985), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31853] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN2, - ACTIONS(3037), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_RPAREN, - STATE(1506), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1968), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1955), 24, + anon_sym_COLON, + ACTIONS(2980), 22, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym___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_const, anon_sym_constexpr, anon_sym_volatile, @@ -98192,43 +99970,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [31899] = 14, + [33791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2645), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(3027), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(2964), 1, anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1254), 1, + STATE(1292), 1, sym__declarator, - STATE(1698), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1107), 2, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1296), 5, + STATE(1320), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -98239,88 +100015,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [31959] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1284), 1, - sym__field_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1111), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [32019] = 14, + [33846] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2645), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(3027), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(2964), 1, anon_sym_STAR, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1262), 1, + STATE(1291), 1, sym__declarator, - STATE(1698), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2651), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(990), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1108), 2, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1296), 5, + STATE(1320), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -98331,298 +100058,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32079] = 22, + [33901] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3043), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(3045), 1, + ACTIONS(3073), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - STATE(1520), 1, + STATE(1495), 1, aux_sym_argument_list_repeat1, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32154] = 21, + [33976] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - STATE(753), 1, + ACTIONS(3075), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + STATE(1509), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3049), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [32227] = 22, + [34051] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, + sym_identifier, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3043), 1, - anon_sym_COMMA, - ACTIONS(3051), 1, - anon_sym_RPAREN, - STATE(753), 1, - sym_argument_list, - STATE(1481), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2958), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32302] = 22, + STATE(1302), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [34106] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, + sym_identifier, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3043), 1, - anon_sym_COMMA, - ACTIONS(3053), 1, - anon_sym_RPAREN, - STATE(753), 1, - sym_argument_list, - STATE(1499), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2958), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32377] = 22, + STATE(1305), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [34161] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, + sym_identifier, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3043), 1, - anon_sym_COMMA, - ACTIONS(3055), 1, - anon_sym_RPAREN, - STATE(753), 1, - sym_argument_list, - STATE(1492), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2958), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32452] = 6, + STATE(1303), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [34216] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3060), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(3064), 1, - anon_sym_LBRACK, - ACTIONS(1968), 2, - anon_sym_COMMA, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(3057), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1955), 23, + STATE(1293), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -98631,138 +100336,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [34271] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, sym_identifier, - [32495] = 20, + ACTIONS(2956), 1, + anon_sym_LPAREN2, + ACTIONS(2958), 1, + anon_sym_STAR, + STATE(1304), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [34326] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3077), 1, + anon_sym_COMMA, + ACTIONS(3079), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + STATE(1531), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [32566] = 22, + [34401] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3069), 1, + ACTIONS(3081), 1, anon_sym_COMMA, - ACTIONS(3071), 1, + ACTIONS(3083), 1, anon_sym_RBRACE, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - STATE(1510), 1, + STATE(1518), 1, aux_sym_initializer_list_repeat1, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32641] = 5, + [34476] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1289), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [34531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(3087), 2, anon_sym_LPAREN2, - ACTIONS(1968), 2, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3073), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1955), 24, + ACTIONS(3085), 27, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -98771,95 +100560,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [32682] = 22, + [34568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(3091), 2, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3076), 1, - anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_RPAREN, - STATE(753), 1, - sym_argument_list, - STATE(1459), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32757] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1099), 1, - sym__type_specifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1831), 1, - sym_type_descriptor, - STATE(1078), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1871), 4, + ACTIONS(3089), 27, + anon_sym___extension__, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -98868,794 +100594,804 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32813] = 20, + sym_primitive_type, + sym_identifier, + [34605] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3071), 1, + anon_sym_COMMA, + ACTIONS(3093), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + STATE(1468), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3080), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [32883] = 21, + [34680] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_COMMA, - ACTIONS(3082), 1, - anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32955] = 21, + ACTIONS(3095), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [34751] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3084), 1, - anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33027] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1997), 1, - sym_identifier, - ACTIONS(3086), 1, - anon_sym_enum, - STATE(1099), 1, - sym__type_specifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1848), 1, - sym_type_descriptor, - STATE(1064), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1871), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [33083] = 21, + ACTIONS(3099), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [34824] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(3088), 1, + ACTIONS(3101), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + STATE(1498), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33155] = 20, + [34899] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3103), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3090), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [33225] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1171), 1, - sym__type_specifier, - STATE(1202), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1224), 1, - sym__type_definition_type, - STATE(1058), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [33281] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1171), 1, - sym__type_specifier, - STATE(1202), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1220), 1, - sym__type_definition_type, - STATE(1058), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [33337] = 21, + [34971] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3094), 1, + ACTIONS(3105), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33409] = 21, + [35043] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_COMMA, - ACTIONS(3096), 1, - anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33481] = 21, + ACTIONS(3107), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [35113] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33553] = 21, + ACTIONS(3109), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [35183] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1132), 1, + sym__type_specifier, + STATE(1142), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1794), 1, + sym_type_descriptor, + STATE(1088), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1871), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35239] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3100), 1, + ACTIONS(3111), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33625] = 20, + [35311] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, + anon_sym_SEMI, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3102), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [33695] = 20, + [35383] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3115), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3104), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [33765] = 21, + [35455] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1117), 1, + sym__type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1123), 1, + sym__type_definition_type, + STATE(1106), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35511] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1132), 1, + sym__type_specifier, + STATE(1142), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1788), 1, + sym_type_descriptor, + STATE(1088), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1871), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35567] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3106), 1, + ACTIONS(3119), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33837] = 20, + [35639] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3121), 1, + anon_sym_SEMI, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3108), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [33907] = 13, + [35711] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -99666,23 +101402,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1873), 1, anon_sym_enum, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(1171), 1, + STATE(1117), 1, sym__type_specifier, - STATE(1202), 1, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1221), 1, + STATE(1130), 1, sym__type_definition_type, - STATE(1058), 2, + STATE(1106), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, + ACTIONS(3117), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -99698,7 +101434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33963] = 13, + [35767] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -99709,23 +101445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1873), 1, anon_sym_enum, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(1171), 1, + STATE(1117), 1, sym__type_specifier, - STATE(1202), 1, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1217), 1, + STATE(1122), 1, sym__type_definition_type, - STATE(1058), 2, + STATE(1106), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, + ACTIONS(3117), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -99741,399 +101477,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34019] = 21, + [35823] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3110), 1, + ACTIONS(3123), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34091] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1171), 1, - sym__type_specifier, - STATE(1202), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1225), 1, - sym__type_definition_type, - STATE(1058), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [34147] = 21, + [35895] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3112), 1, + ACTIONS(3125), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34219] = 21, + [35967] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3114), 1, + ACTIONS(3127), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34291] = 21, + [36039] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_COMMA, - ACTIONS(3116), 1, - anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34363] = 21, + ACTIONS(3129), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [36109] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3131), 2, anon_sym_COMMA, - ACTIONS(3118), 1, - anon_sym_SEMI, - STATE(753), 1, + anon_sym_RPAREN, + [36179] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34435] = 21, + ACTIONS(3133), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [36249] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3120), 1, + ACTIONS(3135), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34507] = 13, + [36321] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1171), 1, - sym__type_specifier, - STATE(1202), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1223), 1, - sym__type_definition_type, - STATE(1058), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [34563] = 13, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3137), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [36391] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -100141,26 +101889,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, + anon_sym_union, + ACTIONS(2011), 1, sym_identifier, - STATE(1171), 1, + ACTIONS(3139), 1, + anon_sym_enum, + STATE(1132), 1, sym__type_specifier, - STATE(1202), 1, + STATE(1142), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1226), 1, - sym__type_definition_type, - STATE(1058), 2, + STATE(1713), 1, + sym_type_descriptor, + STATE(1111), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, + ACTIONS(1871), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100176,7 +101924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34619] = 13, + [36447] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -100187,23 +101935,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1873), 1, anon_sym_enum, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(1171), 1, + STATE(1117), 1, sym__type_specifier, - STATE(1202), 1, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1218), 1, + STATE(1131), 1, sym__type_definition_type, - STATE(1058), 2, + STATE(1106), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, + ACTIONS(3117), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100219,101 +101967,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34675] = 21, + [36503] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3122), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(3141), 1, + anon_sym_SEMI, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34747] = 13, + [36575] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1099), 1, - sym__type_specifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1795), 1, - sym_type_descriptor, - STATE(1078), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1871), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [34803] = 13, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3143), 1, + anon_sym_SEMI, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36647] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, + anon_sym_SEMI, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36719] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3147), 1, + anon_sym_RPAREN, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36791] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -100324,23 +102182,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1873), 1, anon_sym_enum, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(1099), 1, + STATE(1117), 1, sym__type_specifier, - STATE(1114), 1, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1810), 1, - sym_type_descriptor, - STATE(1078), 2, + STATE(1125), 1, + sym__type_definition_type, + STATE(1106), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1871), 4, + ACTIONS(3117), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100356,7 +102214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34859] = 13, + [36847] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -100367,23 +102225,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1873), 1, anon_sym_enum, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(1171), 1, + STATE(1117), 1, sym__type_specifier, - STATE(1202), 1, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1222), 1, + STATE(1128), 1, sym__type_definition_type, - STATE(1058), 2, + STATE(1106), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, + ACTIONS(3117), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100399,7 +102257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34915] = 13, + [36903] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -100410,23 +102268,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1873), 1, anon_sym_enum, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - STATE(1171), 1, + STATE(1132), 1, sym__type_specifier, - STATE(1202), 1, + STATE(1142), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1219), 1, - sym__type_definition_type, - STATE(1058), 2, + STATE(1795), 1, + sym_type_descriptor, + STATE(1088), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, + ACTIONS(1871), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100442,58 +102300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34971] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_COMMA, - ACTIONS(3124), 1, - anon_sym_RPAREN, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35043] = 13, + [36959] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -100502,17 +102309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1997), 1, + ACTIONS(2011), 1, sym_identifier, - ACTIONS(3086), 1, + ACTIONS(3139), 1, anon_sym_enum, - STATE(1099), 1, + STATE(1132), 1, sym__type_specifier, - STATE(1114), 1, + STATE(1142), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1696), 1, + STATE(1792), 1, sym_type_descriptor, - STATE(1064), 2, + STATE(1111), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1871), 4, @@ -100520,7 +102327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100536,1207 +102343,1252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35099] = 21, + [37015] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3126), 1, + ACTIONS(3149), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35171] = 21, + [37087] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(3151), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35243] = 21, + [37159] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3153), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35315] = 20, + [37231] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1117), 1, + sym__type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1124), 1, + sym__type_definition_type, + STATE(1106), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37287] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3155), 1, + anon_sym_SEMI, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3132), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [35385] = 21, + [37359] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3157), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35457] = 21, + [37431] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1117), 1, + sym__type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1129), 1, + sym__type_definition_type, + STATE(1106), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37487] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1117), 1, + sym__type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1127), 1, + sym__type_definition_type, + STATE(1106), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37543] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(3159), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35529] = 20, + [37615] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3138), 2, + ACTIONS(3161), 2, anon_sym_COMMA, anon_sym_RPAREN, - [35599] = 21, + [37685] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1117), 1, + sym__type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1126), 1, + sym__type_definition_type, + STATE(1106), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37741] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3140), 1, + ACTIONS(3163), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35671] = 20, + [37813] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(1947), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3142), 1, - anon_sym_COLON, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(1949), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35740] = 20, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2447), 1, + anon_sym_LBRACK, + STATE(1344), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1387), 1, + sym_parameter_list, + STATE(1399), 1, + sym__abstract_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + ACTIONS(3165), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1401), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [37872] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3191), 1, + anon_sym_RBRACK, + ACTIONS(3193), 1, anon_sym_QMARK, - ACTIONS(3144), 1, - anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35809] = 14, + [37941] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2569), 1, + anon_sym_PIPE, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - STATE(753), 1, + ACTIONS(3181), 1, + anon_sym_AMP, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2493), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2491), 7, + ACTIONS(2567), 5, 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, - [35866] = 20, + [38002] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2244), 1, + anon_sym_RBRACK, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - ACTIONS(3158), 1, - anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35935] = 11, + [38071] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(2569), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2493), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2491), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3185), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [35986] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(3150), 1, - anon_sym_SLASH, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3146), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3148), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3156), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2491), 9, + ACTIONS(2567), 5, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [36039] = 20, + [38130] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 1, + ACTIONS(2246), 1, anon_sym_RBRACK, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36108] = 20, + [38199] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3174), 1, - anon_sym_COMMA, - STATE(753), 1, + ACTIONS(3195), 1, + anon_sym_COLON, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36177] = 20, + [38268] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3197), 1, + anon_sym_COLON, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36246] = 20, + [38337] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3199), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36315] = 12, + [38406] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, - anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1299), 1, - sym__type_declarator, - STATE(1800), 1, - sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36368] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1148), 1, - sym__type_specifier, - STATE(1202), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3092), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36421] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2240), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3201), 1, + anon_sym_RPAREN, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36490] = 20, + [38475] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3176), 1, - anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(2569), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36559] = 20, + ACTIONS(2567), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [38532] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3178), 1, + ACTIONS(3203), 1, anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36628] = 20, + [38601] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2242), 1, anon_sym_RBRACK, - ACTIONS(2687), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36697] = 20, + [38670] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - ACTIONS(3180), 1, - anon_sym_COLON, - STATE(753), 1, + ACTIONS(3205), 1, + anon_sym_RBRACK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36766] = 12, + [38739] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -101745,15 +103597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1997), 1, - sym_identifier, - ACTIONS(3086), 1, + ACTIONS(1873), 1, anon_sym_enum, - STATE(1105), 1, + ACTIONS(2011), 1, + sym_identifier, + STATE(1133), 1, sym__type_specifier, - STATE(1114), 1, + STATE(1142), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1080), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1871), 4, @@ -101761,7 +103613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(925), 5, + STATE(811), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -101777,1240 +103629,1306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36819] = 20, + [38792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2569), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2567), 9, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, - anon_sym_PIPE, - ACTIONS(3166), 1, anon_sym_CARET, - ACTIONS(3168), 1, - anon_sym_AMP, - ACTIONS(3172), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(753), 1, + [38845] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_SLASH, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(2569), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(2567), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36888] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 1, - anon_sym_LPAREN2, - ACTIONS(2920), 1, - anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1309), 1, - sym__type_declarator, - STATE(1800), 1, - sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36941] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [38896] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2569), 1, + anon_sym_PIPE, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, - anon_sym_AMP_AMP, - ACTIONS(3164), 1, - anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(3172), 1, - anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37010] = 20, + ACTIONS(2567), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [38959] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - STATE(753), 1, + ACTIONS(3207), 1, + anon_sym_COLON, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37079] = 20, + [39028] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, - anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(3172), 1, - anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37148] = 20, + ACTIONS(2567), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [39091] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(3172), 1, - anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37217] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 1, - anon_sym_LPAREN2, - ACTIONS(2920), 1, - anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1307), 1, - sym__type_declarator, - STATE(1800), 1, - sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [37270] = 20, + ACTIONS(2567), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [39156] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3182), 1, + ACTIONS(3209), 1, anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37339] = 15, + [39225] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2232), 1, + anon_sym_RBRACK, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - STATE(753), 1, + ACTIONS(3173), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3175), 1, + anon_sym_AMP_AMP, + ACTIONS(3177), 1, + anon_sym_PIPE, + ACTIONS(3179), 1, + anon_sym_CARET, + ACTIONS(3181), 1, + anon_sym_AMP, + ACTIONS(3193), 1, + anon_sym_QMARK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2493), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2491), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [37398] = 10, + [39294] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2483), 1, + anon_sym_RBRACK, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - STATE(753), 1, + ACTIONS(3173), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3175), 1, + anon_sym_AMP_AMP, + ACTIONS(3177), 1, + anon_sym_PIPE, + ACTIONS(3179), 1, + anon_sym_CARET, + ACTIONS(3181), 1, + anon_sym_AMP, + ACTIONS(3193), 1, + anon_sym_QMARK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3148), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2493), 6, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2491), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3185), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [37447] = 20, + [39363] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2230), 1, anon_sym_RBRACK, - ACTIONS(2687), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37516] = 20, + [39432] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2254), 1, + anon_sym_RBRACK, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - ACTIONS(3184), 1, - anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37585] = 20, + [39501] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 1, - anon_sym_RBRACK, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, - anon_sym_AMP_AMP, - ACTIONS(3164), 1, - anon_sym_PIPE, - ACTIONS(3166), 1, - anon_sym_CARET, - ACTIONS(3168), 1, - anon_sym_AMP, - ACTIONS(3172), 1, - anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(2569), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(2567), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37654] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1873), 1, - anon_sym_enum, - ACTIONS(1997), 1, - sym_identifier, - STATE(1105), 1, - sym__type_specifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1871), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(925), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [37707] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [39550] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3186), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(3211), 1, + anon_sym_COMMA, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3152), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3154), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3156), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37776] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2355), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3188), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2353), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37815] = 20, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39619] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2248), 1, + anon_sym_RBRACK, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - ACTIONS(3191), 1, - anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37884] = 18, + [39688] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(3162), 1, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3023), 1, anon_sym_AMP, - STATE(753), 1, + ACTIONS(3033), 1, + anon_sym_QMARK, + ACTIONS(3213), 1, + anon_sym_COLON, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2491), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [37949] = 20, + [39757] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3193), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(3215), 1, + anon_sym_COLON, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38018] = 20, + [39826] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(2252), 1, anon_sym_RBRACK, - ACTIONS(2687), 1, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3160), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(3162), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(3164), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(3172), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38087] = 20, + [39895] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1873), 1, + anon_sym_enum, + ACTIONS(2011), 1, + sym_identifier, + STATE(1116), 1, + sym__type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39948] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3195), 1, + ACTIONS(3217), 1, anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38156] = 16, + [40017] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_PIPE, - ACTIONS(2687), 1, + ACTIONS(2614), 1, + anon_sym_RBRACK, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3168), 1, + ACTIONS(3173), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3175), 1, + anon_sym_AMP_AMP, + ACTIONS(3177), 1, + anon_sym_PIPE, + ACTIONS(3179), 1, + anon_sym_CARET, + ACTIONS(3181), 1, anon_sym_AMP, - STATE(753), 1, + ACTIONS(3193), 1, + anon_sym_QMARK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2491), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [38217] = 20, + [40086] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(3013), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3023), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3033), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3219), 1, anon_sym_COLON, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3027), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3029), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38286] = 20, + [40155] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(2433), 1, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2587), 1, + anon_sym_RBRACK, + ACTIONS(2926), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(2976), 1, + ACTIONS(3173), 1, anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, + ACTIONS(3175), 1, anon_sym_AMP_AMP, - ACTIONS(2980), 1, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(2982), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(2984), 1, + ACTIONS(3181), 1, anon_sym_AMP, - ACTIONS(2994), 1, + ACTIONS(3193), 1, anon_sym_QMARK, - ACTIONS(3199), 1, - anon_sym_RPAREN, - STATE(753), 1, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2960), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2986), 2, + ACTIONS(3183), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2988), 2, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2990), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2992), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38355] = 17, + [40224] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2011), 1, + sym_identifier, + ACTIONS(3139), 1, + anon_sym_enum, + STATE(1133), 1, + sym__type_specifier, + STATE(1142), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1871), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(811), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [40277] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2256), 1, + anon_sym_RBRACK, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3164), 1, + ACTIONS(3173), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3175), 1, + anon_sym_AMP_AMP, + ACTIONS(3177), 1, anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - STATE(753), 1, + ACTIONS(3193), 1, + anon_sym_QMARK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2491), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [38418] = 17, + [40346] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2258), 1, + anon_sym_RBRACK, + ACTIONS(2509), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_PIPE, - ACTIONS(2687), 1, + ACTIONS(2926), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3171), 1, anon_sym_SLASH, - ACTIONS(3166), 1, + ACTIONS(3173), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3175), 1, + anon_sym_AMP_AMP, + ACTIONS(3177), 1, + anon_sym_PIPE, + ACTIONS(3179), 1, anon_sym_CARET, - ACTIONS(3168), 1, + ACTIONS(3181), 1, anon_sym_AMP, - STATE(753), 1, + ACTIONS(3193), 1, + anon_sym_QMARK, + STATE(775), 1, sym_argument_list, - ACTIONS(2435), 2, + ACTIONS(2515), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, + ACTIONS(2517), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3146), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3148), 2, + ACTIONS(3169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3152), 2, + ACTIONS(3183), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3185), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3154), 2, + ACTIONS(3187), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3156), 2, + ACTIONS(3189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2491), 4, + [40415] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, anon_sym_QMARK, - [38481] = 8, + ACTIONS(3221), 1, + anon_sym_COLON, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(3201), 1, - anon_sym_COLON, - STATE(923), 1, - sym_attribute_specifier, - STATE(1098), 1, - sym_enumerator_list, - ACTIONS(2936), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3225), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2934), 16, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(3223), 13, + 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, + sym_primitive_type, + sym_identifier, + [40522] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3229), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1118), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(3227), 13, 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, + sym_primitive_type, + sym_identifier, + [40560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1115), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103019,14 +104937,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + ACTIONS(3231), 13, + 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, sym_primitive_type, sym_identifier, - [38525] = 4, + [40598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3237), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(3235), 13, + 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, + sym_primitive_type, + sym_identifier, + [40636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3239), 1, anon_sym_SEMI, - ACTIONS(2517), 7, + ACTIONS(2652), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -103034,7 +104997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2515), 18, + ACTIONS(2650), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -103053,244 +105016,505 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [38561] = 19, + [40672] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_LBRACK, + ACTIONS(3013), 1, + anon_sym_SLASH, + ACTIONS(3015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3017), 1, + anon_sym_AMP_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_AMP, + ACTIONS(3033), 1, + anon_sym_QMARK, + STATE(775), 1, + sym_argument_list, + ACTIONS(2515), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2517), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3027), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3029), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40738] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2708), 1, + sym_identifier, + ACTIONS(3244), 1, + sym_primitive_type, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2711), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3241), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2713), 16, + anon_sym___extension__, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [40779] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1408), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [40831] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1434), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [40883] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1438), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [40935] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1464), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [40987] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2964), 1, - anon_sym_SLASH, - ACTIONS(2976), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2978), 1, - anon_sym_AMP_AMP, - ACTIONS(2980), 1, - anon_sym_PIPE, - ACTIONS(2982), 1, - anon_sym_CARET, - ACTIONS(2984), 1, - anon_sym_AMP, - ACTIONS(2994), 1, - anon_sym_QMARK, - STATE(753), 1, - sym_argument_list, - ACTIONS(2435), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2437), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2960), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2698), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2986), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2988), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2990), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2992), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38627] = 7, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1449), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41039] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2941), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_attribute_specifier, - STATE(1097), 1, - sym_enumerator_list, - ACTIONS(2949), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2947), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1429), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38669] = 7, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41091] = 13, ACTIONS(3), 1, sym_comment, - STATE(1103), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3207), 2, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(3212), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3209), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3205), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1459), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38711] = 5, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41143] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(921), 1, - sym_attribute_specifier, - ACTIONS(3020), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3018), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1457), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38747] = 5, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41195] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(918), 1, - sym_attribute_specifier, - ACTIONS(3006), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3004), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1411), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38783] = 5, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41247] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(914), 1, - sym_attribute_specifier, - ACTIONS(3013), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3011), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1316), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1430), 1, + sym__type_definition_declarators, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38819] = 11, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41299] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2232), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2234), 1, + ACTIONS(2238), 1, anon_sym_STAR, - ACTIONS(2653), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1362), 1, + STATE(1372), 1, sym__abstract_declarator, - STATE(1385), 1, + STATE(1387), 1, sym_parameter_list, - STATE(1104), 2, + STATE(1138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3215), 3, + ACTIONS(3247), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1371), 4, + STATE(1401), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3217), 8, + ACTIONS(3249), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103299,61 +105523,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38866] = 11, + [41346] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2232), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2234), 1, + ACTIONS(2238), 1, anon_sym_STAR, - ACTIONS(2653), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1365), 1, + STATE(1380), 1, sym__abstract_declarator, - STATE(1385), 1, + STATE(1387), 1, sym_parameter_list, - STATE(1106), 2, + STATE(1134), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2647), 3, + ACTIONS(3251), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1371), 4, + STATE(1401), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3217), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [38913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3219), 21, + ACTIONS(3249), 8, anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103361,36 +105559,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38944] = 11, + [41393] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2232), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2234), 1, + ACTIONS(2238), 1, anon_sym_STAR, - ACTIONS(2653), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1356), 1, + STATE(1376), 1, sym__abstract_declarator, - STATE(1385), 1, + STATE(1387), 1, sym_parameter_list, - STATE(1080), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3223), 3, + ACTIONS(3253), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1371), 4, + STATE(1401), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3217), 8, + ACTIONS(3249), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103399,62 +105595,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38991] = 3, + [41440] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 2, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, anon_sym_LPAREN2, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(3225), 21, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1323), 1, + sym__type_declarator, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39022] = 11, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41489] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2232), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2234), 1, + ACTIONS(2238), 1, anon_sym_STAR, - ACTIONS(2653), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1368), 1, + STATE(1375), 1, sym__abstract_declarator, - STATE(1385), 1, + STATE(1387), 1, sym_parameter_list, - STATE(1080), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3229), 3, + ACTIONS(2952), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1371), 4, + STATE(1401), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3217), 8, + ACTIONS(3249), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103463,34 +105668,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39069] = 11, + [41536] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 1, + anon_sym_LPAREN2, + ACTIONS(2698), 1, + anon_sym_STAR, + ACTIONS(2702), 1, + sym_primitive_type, + STATE(1339), 1, + sym_ms_based_modifier, + STATE(1366), 1, + sym__type_declarator, + STATE(1827), 1, + sym_ms_call_modifier, + ACTIONS(2700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1369), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41585] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2232), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2234), 1, + ACTIONS(2238), 1, anon_sym_STAR, - ACTIONS(2653), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1369), 1, - sym__abstract_declarator, STATE(1385), 1, + sym__abstract_declarator, + STATE(1387), 1, sym_parameter_list, - STATE(1102), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3231), 3, + ACTIONS(3255), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1371), 4, + STATE(1401), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3217), 8, + ACTIONS(3249), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103499,137 +105741,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39116] = 11, + [41632] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2232), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2234), 1, + ACTIONS(2238), 1, anon_sym_STAR, - ACTIONS(2653), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1359), 1, + STATE(1383), 1, sym__abstract_declarator, - STATE(1385), 1, + STATE(1387), 1, sym_parameter_list, - STATE(1080), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3025), 3, + ACTIONS(2441), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1371), 4, + STATE(1401), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3217), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39163] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1261), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39207] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1254), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39251] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - STATE(1284), 1, - sym__field_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(3249), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103637,65 +105777,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39295] = 10, + [41679] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(3031), 1, + ACTIONS(2954), 1, sym_identifier, - ACTIONS(3033), 1, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(3035), 1, + ACTIONS(2958), 1, anon_sym_STAR, - STATE(1294), 1, + ACTIONS(3257), 1, + anon_sym_SEMI, + STATE(1298), 1, sym__field_declarator, - STATE(1730), 1, + STATE(1357), 1, sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1340), 5, + STATE(1491), 1, + sym__field_declaration_declarator, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(1756), 1, + sym_attribute_specifier, + STATE(1341), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39339] = 10, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41731] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(3031), 1, + ACTIONS(2954), 1, sym_identifier, - ACTIONS(3033), 1, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(3035), 1, + ACTIONS(2958), 1, anon_sym_STAR, - STATE(1293), 1, + ACTIONS(3259), 1, + anon_sym_SEMI, + STATE(1298), 1, sym__field_declarator, - STATE(1730), 1, + STATE(1357), 1, sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1340), 5, + STATE(1532), 1, + sym__field_declaration_declarator, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(1774), 1, + sym_attribute_specifier, + STATE(1341), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41783] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + sym_primitive_type, + ACTIONS(3261), 1, + sym_identifier, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2715), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2711), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2713), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103705,20 +105884,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39383] = 5, + [41821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - STATE(1165), 1, + STATE(1168), 1, sym_preproc_argument_list, - ACTIONS(3237), 5, + ACTIONS(3267), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3233), 15, + ACTIONS(3263), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103734,97 +105913,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [39417] = 10, + [41855] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2645), 1, + ACTIONS(2954), 1, sym_identifier, - ACTIONS(3027), 1, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(2958), 1, anon_sym_STAR, - STATE(1258), 1, - sym__declarator, - STATE(1698), 1, + ACTIONS(3269), 1, + anon_sym_SEMI, + STATE(1298), 1, + sym__field_declarator, + STATE(1357), 1, sym_ms_based_modifier, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39461] = 7, + STATE(1522), 1, + sym__field_declaration_declarator, + STATE(1686), 1, + sym_attribute_specifier, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41907] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, - sym_primitive_type, - ACTIONS(3239), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2954), 1, sym_identifier, - STATE(909), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2884), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2880), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2956), 1, anon_sym_LPAREN2, + ACTIONS(2958), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2882), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39499] = 10, + ACTIONS(3271), 1, + anon_sym_SEMI, + STATE(1298), 1, + sym__field_declarator, + STATE(1357), 1, + sym_ms_based_modifier, + STATE(1500), 1, + sym__field_declaration_declarator, + STATE(1730), 1, + sym_attribute_specifier, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [41959] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3275), 1, anon_sym_RPAREN, - ACTIONS(3245), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3253), 1, + ACTIONS(3285), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1117), 7, + STATE(1153), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103832,199 +106022,199 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39542] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 1, - anon_sym_COMMA, - ACTIONS(3259), 1, - anon_sym_RPAREN, - ACTIONS(3265), 1, - anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, - anon_sym_AMP_AMP, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, - anon_sym_AMP, - STATE(1483), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3277), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3279), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39597] = 16, + [42002] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, - anon_sym_COMMA, - ACTIONS(3265), 1, - anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, - anon_sym_AMP_AMP, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, - anon_sym_AMP, - ACTIONS(3285), 1, - anon_sym_RPAREN, - STATE(1494), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3277), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3279), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39652] = 10, + STATE(685), 1, + sym__old_style_function_declarator, + STATE(1275), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1687), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [42051] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, - anon_sym_defined, - ACTIONS(3287), 1, - anon_sym_RPAREN, - ACTIONS(3289), 1, - sym_number_literal, - ACTIONS(3249), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3255), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1116), 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, - [39695] = 10, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(694), 1, + sym__old_style_function_declarator, + STATE(1276), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1674), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [42100] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, - anon_sym_defined, - ACTIONS(3291), 1, - anon_sym_RPAREN, - ACTIONS(3293), 1, - sym_number_literal, - ACTIONS(3249), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3255), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1120), 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, - [39738] = 16, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(691), 1, + sym__old_style_function_declarator, + STATE(1277), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1682), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [42149] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(3289), 1, anon_sym_COMMA, - ACTIONS(3265), 1, + ACTIONS(3291), 1, + anon_sym_RPAREN, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3267), 1, + ACTIONS(3299), 1, anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, + ACTIONS(3301), 1, anon_sym_AMP_AMP, - ACTIONS(3271), 1, + ACTIONS(3303), 1, anon_sym_PIPE, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3307), 1, anon_sym_AMP, - ACTIONS(3295), 1, - anon_sym_RPAREN, - STATE(1509), 1, + STATE(1527), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3261), 2, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3309), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3311), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3313), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39793] = 5, - ACTIONS(3233), 1, + [42204] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(689), 1, + sym__old_style_function_declarator, + STATE(1274), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1704), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [42253] = 5, + ACTIONS(3263), 1, anon_sym_LF, - ACTIONS(3297), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3299), 1, + ACTIONS(3319), 1, sym_comment, - STATE(1205), 1, + STATE(1242), 1, sym_preproc_argument_list, - ACTIONS(3237), 18, + ACTIONS(3267), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104043,217 +106233,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [39826] = 10, + [42286] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, - anon_sym_SLASH, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3277), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3279), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3303), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3301), 5, + ACTIONS(3289), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3297), 1, + anon_sym_SLASH, + ACTIONS(3299), 1, anon_sym_PIPE_PIPE, + ACTIONS(3301), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - [39868] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - sym_identifier, - ACTIONS(3307), 1, - anon_sym_LPAREN2, - ACTIONS(3309), 1, - anon_sym_defined, - ACTIONS(3315), 1, - sym_number_literal, - ACTIONS(3311), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3313), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3317), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1200), 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, - [39908] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - sym_identifier, - ACTIONS(3307), 1, - anon_sym_LPAREN2, - ACTIONS(3309), 1, - anon_sym_defined, - ACTIONS(3319), 1, - sym_number_literal, - ACTIONS(3311), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3313), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3317), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1192), 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, - [39948] = 9, - ACTIONS(3), 1, - sym_comment, + ACTIONS(3303), 1, + anon_sym_PIPE, ACTIONS(3305), 1, - sym_identifier, + anon_sym_CARET, ACTIONS(3307), 1, - anon_sym_LPAREN2, - ACTIONS(3309), 1, - anon_sym_defined, + anon_sym_AMP, ACTIONS(3321), 1, - sym_number_literal, - ACTIONS(3311), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3313), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3317), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1196), 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, - [39988] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - sym_identifier, - ACTIONS(3307), 1, - anon_sym_LPAREN2, - ACTIONS(3309), 1, - anon_sym_defined, - ACTIONS(3323), 1, - sym_number_literal, - ACTIONS(3311), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3313), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3317), 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, - [40028] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - sym_identifier, - ACTIONS(3307), 1, - anon_sym_LPAREN2, - ACTIONS(3309), 1, - anon_sym_defined, - ACTIONS(3325), 1, - sym_number_literal, - ACTIONS(3311), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3313), 2, + anon_sym_RPAREN, + STATE(1506), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1214), 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, - [40068] = 9, + ACTIONS(3295), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3309), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3311), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3313), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42341] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3327), 1, + ACTIONS(3323), 1, + anon_sym_RPAREN, + ACTIONS(3325), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1193), 7, + STATE(1156), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104261,30 +106305,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40108] = 9, + [42384] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, + ACTIONS(3327), 1, + anon_sym_RPAREN, ACTIONS(3329), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1188), 7, + STATE(1150), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104292,61 +106338,105 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40148] = 9, + [42427] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(3289), 1, + anon_sym_COMMA, + ACTIONS(3297), 1, + anon_sym_SLASH, + ACTIONS(3299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3301), 1, + anon_sym_AMP_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, ACTIONS(3305), 1, - sym_identifier, + anon_sym_CARET, ACTIONS(3307), 1, - anon_sym_LPAREN2, - ACTIONS(3309), 1, - anon_sym_defined, + anon_sym_AMP, ACTIONS(3331), 1, - sym_number_literal, - ACTIONS(3311), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3313), 2, + anon_sym_RPAREN, + STATE(1497), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1206), 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, - [40188] = 9, + ACTIONS(3295), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3309), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3311), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3313), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42482] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, - anon_sym_defined, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(686), 1, + sym__old_style_function_declarator, + STATE(1273), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1847), 1, + sym__declaration_declarator, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [42531] = 9, + ACTIONS(3), 1, + sym_comment, ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, + anon_sym_LPAREN2, + ACTIONS(3337), 1, + anon_sym_defined, + ACTIONS(3343), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1213), 7, + STATE(1228), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104354,30 +106444,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40228] = 9, + [42571] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3335), 1, + ACTIONS(3347), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1204), 7, + STATE(1177), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104385,30 +106475,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40268] = 9, + [42611] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1278), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1704), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [42657] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, - anon_sym_defined, ACTIONS(3337), 1, + anon_sym_defined, + ACTIONS(3349), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1164), 7, + STATE(1255), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104416,105 +106540,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3341), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3339), 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, - [40336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3343), 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, - [40364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3347), 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, - [40392] = 9, + [42697] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, ACTIONS(3351), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1153), 7, + STATE(1256), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104522,30 +106571,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40432] = 9, + [42737] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, ACTIONS(3353), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1154), 7, + STATE(1241), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104553,30 +106602,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40472] = 9, + [42777] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, ACTIONS(3355), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1136), 7, + STATE(1257), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104584,30 +106633,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40512] = 9, + [42817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, ACTIONS(3357), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1155), 7, + STATE(1258), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104615,30 +106664,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40552] = 9, + [42857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, ACTIONS(3359), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1156), 7, + STATE(1245), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104646,30 +106695,91 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40592] = 9, + [42897] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 1, + anon_sym_SLASH, + ACTIONS(3299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3301), 1, + anon_sym_AMP_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_CARET, + ACTIONS(3307), 1, + anon_sym_AMP, + ACTIONS(3293), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3295), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3309), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3311), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3313), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3361), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3365), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3363), 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, + [42975] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3361), 1, + ACTIONS(3367), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1157), 7, + STATE(1239), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104677,30 +106787,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40632] = 9, + [43015] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3363), 1, + ACTIONS(3369), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1158), 7, + STATE(1263), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104708,30 +106818,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40672] = 9, + [43055] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3365), 1, + ACTIONS(3371), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1122), 7, + STATE(1240), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104739,30 +106849,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40712] = 9, + [43095] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3367), 1, + ACTIONS(3373), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1159), 7, + STATE(1262), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104770,30 +106880,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40752] = 9, + [43135] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3369), 1, + ACTIONS(3375), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1160), 7, + STATE(1259), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104801,30 +106911,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40792] = 9, + [43175] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3371), 1, + ACTIONS(3377), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1161), 7, + STATE(1226), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104832,84 +106942,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1169), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3373), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3379), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3377), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40896] = 9, + [43215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3381), 1, + ACTIONS(3379), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1183), 7, + STATE(1261), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104917,16 +106973,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [40936] = 3, + [43255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 5, + ACTIONS(3383), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3383), 15, + ACTIONS(3381), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -104942,22 +106998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [40964] = 3, + [43283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 5, + ACTIONS(3297), 1, anon_sym_SLASH, + ACTIONS(3293), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3295), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3387), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3387), 15, + ACTIONS(3385), 11, 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, @@ -104967,24 +107026,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [40992] = 5, + [43317] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, + anon_sym_LPAREN2, + ACTIONS(3337), 1, + anon_sym_defined, + ACTIONS(3389), 1, + sym_number_literal, + ACTIONS(3339), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1251), 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, + [43357] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3263), 2, + ACTIONS(3293), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3303), 4, + ACTIONS(3315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3301), 13, + ACTIONS(3385), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -104992,222 +107086,286 @@ 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, - [41024] = 3, + [43393] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 5, + ACTIONS(3297), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3301), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(3311), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3313), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3385), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41052] = 13, + [43433] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3269), 1, - anon_sym_AMP_AMP, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, - anon_sym_AMP, - ACTIONS(3261), 2, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3309), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3311), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3313), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3301), 3, + ACTIONS(3387), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3385), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [41100] = 12, + anon_sym_AMP_AMP, + anon_sym_CARET, + [43475] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3307), 1, anon_sym_AMP, - ACTIONS(3261), 2, + ACTIONS(3387), 1, + anon_sym_PIPE, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3309), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3311), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3313), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3301), 4, + ACTIONS(3385), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [41146] = 12, + anon_sym_CARET, + [43519] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, + anon_sym_LPAREN2, + ACTIONS(3337), 1, + anon_sym_defined, + ACTIONS(3391), 1, + sym_number_literal, + ACTIONS(3339), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1229), 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, + [43559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3307), 1, anon_sym_AMP, - ACTIONS(3303), 1, + ACTIONS(3387), 1, anon_sym_PIPE, - ACTIONS(3261), 2, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3309), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3311), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3313), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3301), 4, + ACTIONS(3385), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [41192] = 11, + [43605] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1290), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1811), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [43651] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3275), 1, - anon_sym_AMP, ACTIONS(3303), 1, anon_sym_PIPE, - ACTIONS(3261), 2, + ACTIONS(3305), 1, + anon_sym_CARET, + ACTIONS(3307), 1, + anon_sym_AMP, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3309), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3311), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3313), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3301), 5, + ACTIONS(3385), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [41236] = 9, + [43697] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3261), 2, + ACTIONS(3301), 1, + anon_sym_AMP_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_CARET, + ACTIONS(3307), 1, + anon_sym_AMP, + ACTIONS(3293), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3279), 2, + ACTIONS(3309), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3311), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3313), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3303), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3301), 7, + ACTIONS(3385), 3, 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, - [41276] = 7, + [43745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3387), 5, anon_sym_SLASH, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3303), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3301), 9, + ACTIONS(3385), 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, @@ -105215,25 +107373,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41312] = 6, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3297), 1, anon_sym_SLASH, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3295), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3303), 4, + ACTIONS(3387), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3301), 11, + ACTIONS(3385), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -105243,61 +107402,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [41346] = 9, + [43805] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - sym_identifier, - ACTIONS(3245), 1, - anon_sym_LPAREN2, - ACTIONS(3247), 1, - anon_sym_defined, - ACTIONS(3391), 1, - sym_number_literal, - ACTIONS(3249), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3255), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1209), 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, - [41386] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, ACTIONS(3393), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1185), 7, + STATE(1214), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105305,52 +107433,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41426] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3265), 1, - anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, - anon_sym_AMP_AMP, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, - anon_sym_AMP, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3277), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3279), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3395), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41476] = 3, + [43845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 5, + ACTIONS(3397), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3397), 15, + ACTIONS(3395), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105366,16 +107458,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [41504] = 3, + [43873] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1282), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1847), 1, + sym__declaration_declarator, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [43919] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1290), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1674), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [43965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 5, + ACTIONS(2644), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3401), 15, + ACTIONS(2642), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105391,30 +107551,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [41532] = 9, + [43993] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3335), 1, + anon_sym_LPAREN2, + ACTIONS(3337), 1, + anon_sym_defined, + ACTIONS(3399), 1, + sym_number_literal, + ACTIONS(3339), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1253), 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, + [44033] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 1, + sym_identifier, + ACTIONS(3277), 1, + anon_sym_LPAREN2, + ACTIONS(3279), 1, + anon_sym_defined, + ACTIONS(3401), 1, + sym_number_literal, + ACTIONS(3281), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3283), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3287), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1179), 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, + [44073] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, + anon_sym_LPAREN2, + ACTIONS(3337), 1, + anon_sym_defined, + ACTIONS(3403), 1, + sym_number_literal, + ACTIONS(3339), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 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, + [44113] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3337), 1, anon_sym_defined, ACTIONS(3405), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1195), 7, + STATE(1234), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105422,30 +107675,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41572] = 9, + [44153] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, ACTIONS(3407), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1197), 7, + STATE(1180), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105453,57 +107706,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41612] = 5, + [44193] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1080), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3409), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [41644] = 9, + ACTIONS(3277), 1, + anon_sym_LPAREN2, + ACTIONS(3279), 1, + anon_sym_defined, + ACTIONS(3409), 1, + sym_number_literal, + ACTIONS(3281), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3283), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3287), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1252), 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, + [44233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3413), 1, + ACTIONS(3411), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1198), 7, + STATE(1181), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105511,43 +107768,84 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41684] = 5, + [44273] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 2, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, + ACTIONS(2964), 1, anon_sym_STAR, - STATE(1149), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3415), 7, + STATE(1281), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1687), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [44319] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [41716] = 3, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1290), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1847), 1, + sym__declaration_declarator, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [44365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 5, + ACTIONS(3415), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2535), 15, + ACTIONS(3413), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105563,30 +107861,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [41744] = 9, + [44393] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1290), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1687), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [44439] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 1, + sym_identifier, + ACTIONS(3277), 1, + anon_sym_LPAREN2, + ACTIONS(3279), 1, + anon_sym_defined, + ACTIONS(3417), 1, + sym_number_literal, + ACTIONS(3281), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3283), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3287), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1182), 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, + [44479] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 1, + sym_identifier, + ACTIONS(3277), 1, + anon_sym_LPAREN2, + ACTIONS(3279), 1, + anon_sym_defined, + ACTIONS(3419), 1, + sym_number_literal, + ACTIONS(3281), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3283), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3287), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1184), 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, + [44519] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 1, + sym_identifier, + ACTIONS(3277), 1, + anon_sym_LPAREN2, + ACTIONS(3279), 1, + anon_sym_defined, + ACTIONS(3421), 1, + sym_number_literal, + ACTIONS(3281), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3283), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3287), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1167), 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, + [44559] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3419), 1, + ACTIONS(3423), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1184), 7, + STATE(1186), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105594,30 +108019,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41784] = 9, + [44599] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3421), 1, + ACTIONS(3425), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1201), 7, + STATE(1187), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105625,30 +108050,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41824] = 9, + [44639] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3423), 1, + ACTIONS(3427), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1208), 7, + STATE(1227), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105656,30 +108081,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41864] = 9, + [44679] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3425), 1, + ACTIONS(3429), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1211), 7, + STATE(1188), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105687,30 +108112,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41904] = 9, + [44719] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3279), 1, anon_sym_defined, - ACTIONS(3427), 1, + ACTIONS(3431), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3283), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3287), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1212), 7, + STATE(1189), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105718,30 +108143,114 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41944] = 9, + [44759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3435), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3433), 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, + [44787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3439), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3437), 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, + [44815] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1280), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1682), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [44861] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3429), 1, + ACTIONS(3441), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1189), 7, + STATE(1249), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105749,30 +108258,123 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [41984] = 9, + [44901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3443), 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, + [44929] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1290), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1678), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [44975] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1279), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1674), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45021] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3245), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3247), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3431), 1, + ACTIONS(3447), 1, sym_number_literal, - ACTIONS(3249), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3251), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3255), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1190), 7, + STATE(1233), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105780,30 +108382,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [42024] = 9, + [45061] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3309), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3433), 1, + ACTIONS(3449), 1, sym_number_literal, - ACTIONS(3311), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3313), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3317), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1215), 7, + STATE(1248), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105811,51 +108413,84 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [42064] = 13, + [45101] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(2029), 1, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(2031), 1, + STATE(1290), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1474), 1, + sym_init_declarator, + STATE(1682), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45147] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2645), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2653), 1, - anon_sym_LBRACK, - STATE(1326), 1, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1290), 1, sym__declarator, - STATE(1385), 1, - sym_parameter_list, - STATE(1386), 1, - sym__abstract_declarator, - STATE(1698), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(3435), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1371), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1296), 5, + STATE(1474), 1, + sym_init_declarator, + STATE(1704), 1, + sym__declaration_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42112] = 3, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 5, + ACTIONS(3453), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3437), 15, + ACTIONS(3451), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105871,125 +108506,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [42140] = 12, - ACTIONS(3299), 1, + [45221] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3447), 1, + ACTIONS(3455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3457), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3387), 13, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, anon_sym_PIPE, - ACTIONS(3453), 1, anon_sym_CARET, - ACTIONS(3455), 1, anon_sym_AMP, - ACTIONS(3443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3459), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42185] = 11, - ACTIONS(3299), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45252] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3459), 1, anon_sym_LF, - ACTIONS(3451), 1, + ACTIONS(3461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3463), 1, + anon_sym_AMP_AMP, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3303), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42228] = 3, - ACTIONS(3299), 1, + [45297] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_LF, - ACTIONS(3349), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, + ACTIONS(3463), 1, anon_sym_AMP_AMP, + ACTIONS(3465), 1, anon_sym_PIPE, + ACTIONS(3467), 1, anon_sym_CARET, + ACTIONS(3469), 1, anon_sym_AMP, + ACTIONS(3477), 1, + anon_sym_LF, + ACTIONS(3455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42255] = 3, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3339), 1, - anon_sym_LF, - ACTIONS(3341), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3473), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [45342] = 12, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, + ACTIONS(3463), 1, anon_sym_AMP_AMP, + ACTIONS(3465), 1, anon_sym_PIPE, + ACTIONS(3467), 1, anon_sym_CARET, + ACTIONS(3469), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_LF, + ACTIONS(3455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3475), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3457), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42282] = 3, - ACTIONS(3299), 1, + [45387] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(692), 1, + sym__old_style_function_declarator, + STATE(1334), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45430] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(701), 1, + sym__old_style_function_declarator, + STATE(1332), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45473] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3433), 1, anon_sym_LF, - ACTIONS(3385), 18, + ACTIONS(3435), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106008,203 +108719,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [42309] = 12, - ACTIONS(3299), 1, + [45500] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, + ACTIONS(3463), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3463), 1, + ACTIONS(3481), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42354] = 12, - ACTIONS(3299), 1, + [45545] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, + ACTIONS(3463), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3465), 1, + ACTIONS(3483), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42399] = 14, - ACTIONS(3), 1, + [45590] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3437), 1, + anon_sym_LF, + ACTIONS(3439), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3267), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, anon_sym_AMP_AMP, - ACTIONS(3271), 1, anon_sym_PIPE, - ACTIONS(3273), 1, anon_sym_CARET, - ACTIONS(3275), 1, anon_sym_AMP, - ACTIONS(3467), 1, - anon_sym_RPAREN, - ACTIONS(3261), 2, + 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, + [45617] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(702), 1, + sym__old_style_function_declarator, + STATE(1326), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45660] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(1300), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1605), 1, + sym_init_declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45703] = 3, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3381), 1, + anon_sym_LF, + ACTIONS(3383), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3277), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [42448] = 3, - ACTIONS(2535), 1, - anon_sym_LF, - ACTIONS(3299), 1, + [45730] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3297), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3299), 1, anon_sym_PIPE_PIPE, + ACTIONS(3301), 1, anon_sym_AMP_AMP, + ACTIONS(3303), 1, anon_sym_PIPE, + ACTIONS(3305), 1, anon_sym_CARET, + ACTIONS(3307), 1, anon_sym_AMP, + ACTIONS(3485), 1, + anon_sym_RPAREN, + ACTIONS(3293), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3295), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3309), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3311), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3313), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42475] = 12, - ACTIONS(3299), 1, + [45779] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, + ACTIONS(3463), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, - anon_sym_AMP, ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3487), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42520] = 12, - ACTIONS(3299), 1, + [45824] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, + ACTIONS(3463), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3471), 1, + ACTIONS(3489), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42565] = 3, - ACTIONS(3299), 1, + [45869] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3387), 1, + ACTIONS(3363), 1, anon_sym_LF, - ACTIONS(3389), 18, + ACTIONS(3365), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106223,18 +109022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [42592] = 4, - ACTIONS(3299), 1, + [45896] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3445), 3, + ACTIONS(3415), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3303), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106248,45 +109046,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [42621] = 12, - ACTIONS(3299), 1, + [45923] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, - anon_sym_AMP_AMP, - ACTIONS(3451), 1, - anon_sym_PIPE, - ACTIONS(3453), 1, - anon_sym_CARET, - ACTIONS(3455), 1, - anon_sym_AMP, - ACTIONS(3473), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(693), 1, + sym__old_style_function_declarator, + STATE(1335), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [45966] = 9, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3387), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42666] = 3, - ACTIONS(3299), 1, + [46005] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3395), 1, anon_sym_LF, - ACTIONS(3303), 18, + ACTIONS(3397), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106305,45 +109132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [42693] = 12, - ACTIONS(3299), 1, + [46032] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, - anon_sym_LF, - ACTIONS(3303), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, - anon_sym_AMP_AMP, ACTIONS(3451), 1, - anon_sym_PIPE, - ACTIONS(3453), 1, - anon_sym_CARET, - ACTIONS(3455), 1, - anon_sym_AMP, - ACTIONS(3443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3461), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3459), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [42738] = 3, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3401), 1, anon_sym_LF, - ACTIONS(3403), 18, + ACTIONS(3453), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106362,168 +109156,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [42765] = 5, - ACTIONS(3299), 1, + [46059] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, - anon_sym_LF, - ACTIONS(3443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3303), 13, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, + ACTIONS(3463), 1, anon_sym_AMP_AMP, + ACTIONS(3465), 1, anon_sym_PIPE, + ACTIONS(3467), 1, anon_sym_CARET, + ACTIONS(3469), 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, - [42796] = 10, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3301), 1, + ACTIONS(3491), 1, anon_sym_LF, - ACTIONS(3453), 1, - anon_sym_CARET, - ACTIONS(3455), 1, - anon_sym_AMP, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3303), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42837] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2877), 1, - sym_identifier, - ACTIONS(3478), 1, - sym_primitive_type, - STATE(909), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2880), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3475), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2882), 10, - 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, - [42872] = 12, - ACTIONS(3299), 1, + [46104] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, + ACTIONS(3463), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3481), 1, + ACTIONS(3493), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42917] = 12, - ACTIONS(3299), 1, + [46149] = 3, + ACTIONS(2642), 1, + anon_sym_LF, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(2644), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, anon_sym_PIPE, - ACTIONS(3453), 1, anon_sym_CARET, - ACTIONS(3455), 1, anon_sym_AMP, - ACTIONS(3483), 1, - anon_sym_LF, - ACTIONS(3443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3459), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [42962] = 3, - ACTIONS(3299), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46176] = 4, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3399), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3387), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106537,45 +109271,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [42989] = 12, + [46205] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 1, + anon_sym_SLASH, ACTIONS(3299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3301), 1, + anon_sym_AMP_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_CARET, + ACTIONS(3307), 1, + anon_sym_AMP, + ACTIONS(3495), 1, + anon_sym_RPAREN, + ACTIONS(3293), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3295), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3309), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3311), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3313), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46254] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, + ACTIONS(3463), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3485), 1, + ACTIONS(3497), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [43034] = 3, - ACTIONS(3299), 1, + [46299] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(1951), 1, + anon_sym___based, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LPAREN2, + ACTIONS(2964), 1, + anon_sym_STAR, + STATE(683), 1, + sym__old_style_function_declarator, + STATE(1329), 1, + sym__declarator, + STATE(1345), 1, + sym_ms_based_modifier, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46342] = 3, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3345), 18, + ACTIONS(3387), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106594,145 +109395,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [43061] = 9, - ACTIONS(3299), 1, + [46369] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3455), 1, + ACTIONS(3387), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3463), 1, + anon_sym_AMP_AMP, + ACTIONS(3465), 1, + anon_sym_PIPE, + ACTIONS(3467), 1, + anon_sym_CARET, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3303), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [43100] = 14, - ACTIONS(3), 1, + [46414] = 11, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3265), 1, - anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, - anon_sym_AMP_AMP, - ACTIONS(3271), 1, + ACTIONS(3385), 1, + anon_sym_LF, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3273), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_RPAREN, - ACTIONS(3261), 2, + ACTIONS(3387), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43149] = 3, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3437), 1, - anon_sym_LF, - ACTIONS(3439), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43176] = 8, - ACTIONS(3299), 1, + [46457] = 10, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3467), 1, + anon_sym_CARET, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3387), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3303), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [43213] = 7, - ACTIONS(3299), 1, + [46498] = 6, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3303), 7, + ACTIONS(3387), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106740,22 +109514,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [43248] = 6, - ACTIONS(3299), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [46531] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3443), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3445), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3461), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3303), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106767,926 +109540,693 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [43281] = 12, - ACTIONS(3299), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46558] = 12, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3461), 1, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, + ACTIONS(3463), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_CARET, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3489), 1, + ACTIONS(3499), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [43326] = 12, - ACTIONS(3299), 1, + [46603] = 7, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3385), 1, + anon_sym_LF, + ACTIONS(3455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3457), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3473), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3387), 7, anon_sym_PIPE_PIPE, - ACTIONS(3449), 1, anon_sym_AMP_AMP, - ACTIONS(3451), 1, anon_sym_PIPE, - ACTIONS(3453), 1, anon_sym_CARET, - ACTIONS(3455), 1, anon_sym_AMP, - ACTIONS(3491), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [46638] = 8, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 2, + ACTIONS(3475), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3445), 3, + ACTIONS(3457), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3459), 4, + ACTIONS(3473), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [43371] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2934), 1, - anon_sym_const, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COLON, - STATE(923), 1, - sym_attribute_specifier, - STATE(1098), 1, - sym_enumerator_list, - ACTIONS(2936), 11, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [43406] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 1, - anon_sym_LPAREN2, - ACTIONS(2920), 1, - anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1398), 1, - sym__type_definition_declarators, - STATE(1800), 1, - sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43447] = 11, + ACTIONS(3387), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [46675] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1420), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43488] = 11, + STATE(1347), 1, + sym__declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46715] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1406), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43529] = 11, + STATE(1351), 1, + sym__declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46755] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1437), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43570] = 11, + STATE(1367), 1, + sym__declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46795] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2954), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2958), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1432), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1301), 1, + sym__field_declarator, + STATE(1357), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43611] = 11, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46835] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1417), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43652] = 11, + STATE(1350), 1, + sym__declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46875] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1426), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1340), 1, + sym__declarator, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43693] = 11, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46915] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2954), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2956), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2958), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1434), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1357), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43734] = 11, + STATE(1364), 1, + sym__field_declarator, + STATE(1755), 1, + sym_ms_call_modifier, + STATE(1341), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46955] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1951), 1, anon_sym___based, - ACTIONS(2916), 1, + ACTIONS(2439), 1, sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2962), 1, anon_sym_LPAREN2, - ACTIONS(2920), 1, + ACTIONS(2964), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1404), 1, - sym__type_definition_declarators, - STATE(1800), 1, + STATE(1345), 1, sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43775] = 11, + STATE(1349), 1, + sym__declarator, + STATE(1845), 1, + sym_ms_call_modifier, + STATE(1320), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [46995] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 1, + ACTIONS(2878), 1, + anon_sym_const, + ACTIONS(2885), 1, + anon_sym_LBRACE, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3503), 1, + anon_sym_COLON, + STATE(837), 1, + sym_attribute_specifier, + STATE(1011), 1, + sym_enumerator_list, + ACTIONS(2880), 11, anon_sym_LPAREN2, - ACTIONS(2920), 1, anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1306), 1, - sym__type_declarator, - STATE(1439), 1, - sym__type_definition_declarators, - STATE(1800), 1, - sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43816] = 15, + 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, + [47030] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - STATE(478), 1, + STATE(477), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43864] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 1, - anon_sym_LPAREN2, - ACTIONS(2920), 1, - anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1312), 1, - sym__type_declarator, - STATE(1800), 1, - sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [43902] = 15, + [47078] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - STATE(145), 1, + STATE(385), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43950] = 15, + [47126] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - STATE(353), 1, + STATE(138), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43998] = 15, + [47174] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - STATE(376), 1, + STATE(203), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44046] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 1, - anon_sym_LPAREN2, - ACTIONS(2920), 1, - anon_sym_STAR, - ACTIONS(2924), 1, - sym_primitive_type, - STATE(1348), 1, - sym__type_declarator, - STATE(1800), 1, - sym_ms_based_modifier, - ACTIONS(2922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1353), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [44084] = 15, + [47222] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - STATE(202), 1, + STATE(355), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44132] = 14, + [47270] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(376), 1, + STATE(385), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44177] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - ACTIONS(3512), 1, - anon_sym_SEMI, - STATE(1272), 1, - sym__field_declarator, - STATE(1450), 1, - sym__field_declaration_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - STATE(1738), 1, - sym_attribute_specifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [44218] = 14, + [47315] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(145), 1, + STATE(203), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44263] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - ACTIONS(3514), 1, - anon_sym_SEMI, - STATE(1272), 1, - sym__field_declarator, - STATE(1488), 1, - sym__field_declaration_declarator, - STATE(1689), 1, - sym_attribute_specifier, - STATE(1730), 1, - sym_ms_based_modifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [44304] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - ACTIONS(3516), 1, - anon_sym_SEMI, - STATE(1272), 1, - sym__field_declarator, - STATE(1504), 1, - sym__field_declaration_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - STATE(1747), 1, - sym_attribute_specifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [44345] = 14, + [47360] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(478), 1, + STATE(355), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44390] = 14, + [47405] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(202), 1, + STATE(138), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44435] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - ACTIONS(3518), 1, - anon_sym_SEMI, - STATE(1272), 1, - sym__field_declarator, - STATE(1474), 1, - sym__field_declaration_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - STATE(1856), 1, - sym_attribute_specifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [44476] = 14, + [47450] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3502), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3514), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(353), 1, + STATE(477), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1464), 1, + STATE(1481), 1, sym_gnu_asm_expression, - STATE(1467), 1, + STATE(1482), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44521] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(693), 1, - sym__old_style_function_declarator, - STATE(1233), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1655), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44559] = 5, + [47495] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3522), 1, anon_sym_LBRACK_LBRACK, ACTIONS(3525), 1, anon_sym_LBRACK, - STATE(1244), 2, + STATE(1283), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(3520), 10, @@ -107700,127 +110240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [44585] = 11, + [47521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(698), 1, - sym__old_style_function_declarator, - STATE(1230), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1664), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44623] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(700), 1, - sym__old_style_function_declarator, - STATE(1229), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1775), 1, - sym__declaration_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44661] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(695), 1, - sym__old_style_function_declarator, - STATE(1231), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1868), 1, - sym__declaration_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44699] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(697), 1, - sym__old_style_function_declarator, - STATE(1227), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1691), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44737] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(1267), 1, + STATE(1287), 1, sym_gnu_asm_expression, - ACTIONS(3508), 2, + ACTIONS(3516), 2, anon_sym_asm, anon_sym___asm__, - STATE(1253), 2, + STATE(1285), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, ACTIONS(3527), 7, @@ -107831,91 +110263,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [44767] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1234), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1868), 1, - sym__declaration_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44802] = 10, + [47551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3533), 1, + anon_sym_LBRACK, + STATE(1286), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3531), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1252), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1710), 1, - sym__declaration_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44837] = 12, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [47576] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3537), 1, + anon_sym___attribute__, + ACTIONS(3540), 1, + anon_sym_LBRACK, + STATE(1286), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3535), 9, anon_sym_COMMA, - ACTIONS(3502), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3506), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3510), 1, - anon_sym_LPAREN2, - STATE(1249), 1, - sym_parameter_list, - STATE(1464), 1, - sym_gnu_asm_expression, - STATE(1467), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3508), 2, anon_sym_asm, anon_sym___asm__, - STATE(1277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [44876] = 5, + [47601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, ACTIONS(3533), 1, anon_sym_LBRACK, - STATE(1266), 2, + STATE(1294), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, ACTIONS(3531), 9, @@ -107928,21 +110323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [44901] = 7, + [47626] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3535), 7, + ACTIONS(3542), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -107950,96 +110345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [44930] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1252), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1868), 1, - sym__declaration_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [44965] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1252), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1655), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45000] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1252), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1775), 1, - sym__declaration_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45035] = 7, + [47655] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3537), 7, + ACTIONS(3544), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108047,71 +110367,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [45064] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1252), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1664), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45099] = 10, + [47684] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3506), 1, + anon_sym_COMMA, + ACTIONS(3510), 1, + anon_sym_SEMI, + ACTIONS(3512), 1, + anon_sym_LBRACK, + ACTIONS(3514), 1, + anon_sym_EQ, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1236), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1775), 1, - sym__declaration_declarator, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45134] = 7, + STATE(1284), 1, + sym_parameter_list, + STATE(1481), 1, + sym_gnu_asm_expression, + STATE(1482), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3516), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1299), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [47723] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3539), 7, + ACTIONS(3546), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108119,21 +110416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [45163] = 7, + [47752] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3541), 7, + ACTIONS(3548), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108141,87 +110438,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [45192] = 5, + [47781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3545), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3512), 1, anon_sym_LBRACK, - STATE(1266), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3543), 9, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + STATE(1284), 1, + sym_parameter_list, + STATE(1299), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3550), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [45217] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1239), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1691), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45252] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1240), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1655), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45287] = 5, + [47810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3552), 1, + ACTIONS(3554), 1, anon_sym_LBRACK, - STATE(1266), 2, + STATE(1286), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3547), 9, + ACTIONS(3552), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108231,155 +110480,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [45312] = 5, + [47835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3533), 1, + ACTIONS(3558), 1, anon_sym_LBRACK, - STATE(1263), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3531), 9, + ACTIONS(3556), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [45337] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1252), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1644), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45372] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1252), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1691), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45407] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1242), 1, - sym__declarator, - STATE(1493), 1, - sym_init_declarator, - STATE(1664), 1, - sym__declaration_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45442] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(703), 1, - sym__old_style_function_declarator, - STATE(1314), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45474] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, - anon_sym_LPAREN2, - ACTIONS(3554), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_LBRACK, - ACTIONS(3560), 1, - anon_sym_COLON, - STATE(1329), 1, - sym_parameter_list, - STATE(1395), 1, - sym_bitfield_clause, - STATE(1396), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3556), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [45510] = 3, + [47855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(2665), 11, + ACTIONS(2904), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108391,12 +110514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [45530] = 3, + [47875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(2635), 11, + ACTIONS(2916), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108408,55 +110531,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [45550] = 10, + [47895] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3506), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(1249), 1, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3564), 1, + anon_sym_LBRACK, + ACTIONS(3566), 1, + anon_sym_COLON, + STATE(1343), 1, sym_parameter_list, - STATE(1557), 1, - sym_gnu_asm_expression, - ACTIONS(3508), 2, - anon_sym_asm, - anon_sym___asm__, + STATE(1418), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(1433), 1, + sym_bitfield_clause, ACTIONS(3562), 2, - anon_sym_COMMA, anon_sym_SEMI, - STATE(1277), 2, + anon_sym___attribute__, + STATE(1321), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [45584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3564), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [45604] = 5, + [47931] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(3570), 1, anon_sym_LBRACK, - STATE(1244), 2, + STATE(1283), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(3568), 8, @@ -108468,397 +110575,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [45628] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(702), 1, - sym__old_style_function_declarator, - STATE(1322), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45660] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1275), 1, - sym__declarator, - STATE(1551), 1, - sym_init_declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45692] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(686), 1, - sym__old_style_function_declarator, - STATE(1317), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45724] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(696), 1, - sym__old_style_function_declarator, - STATE(1310), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45756] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(684), 1, - sym__old_style_function_declarator, - STATE(1313), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45788] = 8, + [47955] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3512), 1, + anon_sym_LBRACK, + ACTIONS(3514), 1, + anon_sym_EQ, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1336), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45817] = 7, + STATE(1284), 1, + sym_parameter_list, + STATE(1626), 1, + sym_gnu_asm_expression, + ACTIONS(3516), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3572), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1299), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [47989] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3558), 1, + ACTIONS(3564), 1, anon_sym_LBRACK, - STATE(1329), 1, + ACTIONS(3566), 1, + anon_sym_COLON, + STATE(1343), 1, sym_parameter_list, - STATE(1298), 2, + STATE(1528), 1, + sym_bitfield_clause, + STATE(1321), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3572), 5, + ACTIONS(3574), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [45844] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1351), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45873] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1338), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45902] = 7, + [48020] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3558), 1, + ACTIONS(3564), 1, anon_sym_LBRACK, - STATE(1329), 1, + STATE(1343), 1, sym_parameter_list, - STATE(1298), 2, + STATE(1321), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3574), 5, + ACTIONS(3576), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [45929] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - STATE(1291), 1, - sym__field_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [45958] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1339), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [45987] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1327), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [46016] = 9, + [48047] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3558), 1, + ACTIONS(3564), 1, anon_sym_LBRACK, - ACTIONS(3560), 1, - anon_sym_COLON, - STATE(1329), 1, + STATE(1343), 1, sym_parameter_list, - STATE(1497), 1, - sym_bitfield_clause, - STATE(1298), 2, + STATE(1321), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3576), 3, + ACTIONS(3578), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [46047] = 8, + anon_sym_COLON, + [48074] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3035), 1, - anon_sym_STAR, - STATE(1346), 1, - sym__field_declarator, - STATE(1730), 1, - sym_ms_based_modifier, - STATE(1340), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [46076] = 7, + ACTIONS(3564), 1, + anon_sym_LBRACK, + STATE(1343), 1, + sym_parameter_list, + STATE(1321), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3580), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [48101] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3558), 1, + ACTIONS(3564), 1, anon_sym_LBRACK, - STATE(1329), 1, + STATE(1343), 1, sym_parameter_list, - STATE(1298), 2, + STATE(1321), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3578), 5, + ACTIONS(3582), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [46103] = 7, + [48128] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3558), 1, + ACTIONS(3564), 1, anon_sym_LBRACK, - STATE(1329), 1, + STATE(1343), 1, sym_parameter_list, - STATE(1298), 2, + STATE(1321), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3580), 5, + ACTIONS(3584), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [46130] = 8, + [48155] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym___based, - ACTIONS(2645), 1, - sym_identifier, - ACTIONS(3027), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_STAR, - STATE(1324), 1, - sym__declarator, - STATE(1698), 1, - sym_ms_based_modifier, - STATE(1296), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [46159] = 3, + ACTIONS(3588), 1, + anon_sym_LBRACK, + STATE(1365), 1, + sym_parameter_list, + STATE(1325), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3586), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [48181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(3592), 1, anon_sym_LBRACK, - ACTIONS(3582), 9, + ACTIONS(3590), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108868,12 +110755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [46177] = 3, + [48199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3596), 1, anon_sym_LBRACK, - ACTIONS(3586), 9, + ACTIONS(3594), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108883,82 +110770,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [46195] = 5, + [48217] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3592), 1, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + ACTIONS(3588), 1, anon_sym_LBRACK, - STATE(1244), 2, + STATE(1365), 1, + sym_parameter_list, + STATE(1325), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3590), 6, + ACTIONS(3598), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [46217] = 7, + [48243] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3588), 1, anon_sym_LBRACK, - STATE(1354), 1, + STATE(1365), 1, sym_parameter_list, - STATE(1321), 2, + STATE(1325), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3594), 4, + ACTIONS(3600), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [46243] = 3, + [48269] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + ACTIONS(3588), 1, anon_sym_LBRACK, - ACTIONS(3598), 9, + STATE(1365), 1, + sym_parameter_list, + STATE(1325), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3602), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [46261] = 7, + anon_sym___attribute__, + [48295] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3588), 1, anon_sym_LBRACK, - STATE(1354), 1, + STATE(1365), 1, sym_parameter_list, - STATE(1321), 2, + STATE(1325), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3602), 4, + ACTIONS(3604), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [46287] = 3, + [48321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3608), 1, + anon_sym_LBRACK, + STATE(1441), 1, + sym_gnu_asm_input_operand, + STATE(1772), 1, + sym_string_literal, + ACTIONS(3606), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [48345] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_LBRACK, + STATE(1419), 1, + sym_gnu_asm_output_operand, + STATE(1711), 1, + sym_string_literal, + ACTIONS(3610), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [48369] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + ACTIONS(3588), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_COMMA, + STATE(1365), 1, + sym_parameter_list, + STATE(1420), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(3616), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1325), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [48399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3620), 1, anon_sym_LBRACK, - ACTIONS(3604), 9, + ACTIONS(3618), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108968,12 +110918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [46305] = 3, + [48417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3624), 1, anon_sym_LBRACK, - ACTIONS(3608), 9, + ACTIONS(3622), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108983,12 +110933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [46323] = 3, + [48435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(3628), 1, anon_sym_LBRACK, - ACTIONS(3612), 9, + ACTIONS(3626), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108998,206 +110948,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [46341] = 6, + [48453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - STATE(1400), 1, - sym_gnu_asm_output_operand, - STATE(1699), 1, - sym_string_literal, - ACTIONS(3616), 2, + ACTIONS(3630), 9, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [46365] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_LBRACK, - ACTIONS(3620), 1, - anon_sym_COMMA, - STATE(1354), 1, - sym_parameter_list, - STATE(1388), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3622), 2, anon_sym_SEMI, - anon_sym___attribute__, - STATE(1321), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [46395] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [48471] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3636), 1, anon_sym_LBRACK, - STATE(1354), 1, - sym_parameter_list, - STATE(1321), 2, + STATE(1283), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3624), 4, + ACTIONS(3634), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [46421] = 6, + anon_sym_COLON, + [48493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, - anon_sym_LBRACK, - STATE(1440), 1, - sym_gnu_asm_input_operand, - STATE(1777), 1, - sym_string_literal, - ACTIONS(3626), 2, + ACTIONS(3638), 1, anon_sym_RPAREN, + ACTIONS(3640), 1, anon_sym_COLON, + STATE(678), 1, + sym_string_literal, + STATE(1465), 1, + sym_gnu_asm_output_operand_list, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [46445] = 7, + [48516] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3588), 1, anon_sym_LBRACK, - STATE(1354), 1, + STATE(1365), 1, sym_parameter_list, - STATE(1321), 2, + STATE(1325), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3630), 4, + ACTIONS(3642), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [46471] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3500), 1, - anon_sym_LPAREN2, - ACTIONS(3504), 1, - anon_sym_LBRACK, - STATE(154), 1, - sym_compound_statement, - STATE(964), 1, - sym__old_style_parameter_list, - STATE(1249), 1, - sym_parameter_list, - STATE(1277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [46500] = 6, + [48541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - anon_sym_RPAREN, - ACTIONS(3634), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3648), 1, + sym_system_lib_string, + STATE(1848), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1514), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, + ACTIONS(3646), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [46523] = 7, + [48562] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - STATE(1354), 1, - sym_parameter_list, - STATE(1321), 2, + STATE(1283), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3636), 3, + ACTIONS(3650), 5, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [46548] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3500), 1, - anon_sym_LPAREN2, - ACTIONS(3504), 1, - anon_sym_LBRACK, - STATE(457), 1, - sym_compound_statement, - STATE(964), 1, - sym__old_style_parameter_list, - STATE(1249), 1, - sym_parameter_list, - STATE(1277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [46577] = 9, + [48583] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - STATE(208), 1, + STATE(144), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [46606] = 6, + [48612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3640), 1, anon_sym_COLON, - ACTIONS(3638), 1, + ACTIONS(3654), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(678), 1, sym_string_literal, - STATE(1496), 1, + STATE(1519), 1, sym_gnu_asm_output_operand_list, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -109205,231 +111084,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [46629] = 5, + [48635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3658), 1, sym_system_lib_string, - STATE(1871), 2, + STATE(1707), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3642), 5, + ACTIONS(3646), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [46650] = 9, + [48656] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - STATE(383), 1, + STATE(214), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [46679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3648), 1, - sym_system_lib_string, - STATE(1660), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3642), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [46700] = 5, + [48685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3652), 1, + ACTIONS(3662), 1, sym_system_lib_string, - STATE(1741), 2, + STATE(1754), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3642), 5, + ACTIONS(3646), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [46721] = 5, + [48706] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(3664), 1, sym_identifier, - ACTIONS(3656), 1, + ACTIONS(3666), 1, sym_system_lib_string, - STATE(1793), 2, + STATE(1872), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3642), 5, + ACTIONS(3646), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [46742] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3660), 1, - anon_sym_LBRACK, - STATE(1244), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3658), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [46763] = 9, + [48727] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3500), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - STATE(378), 1, + STATE(381), 1, sym_compound_statement, - STATE(964), 1, + STATE(1000), 1, sym__old_style_parameter_list, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [46792] = 5, + [48756] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, + ACTIONS(3668), 1, sym_identifier, - ACTIONS(3664), 1, + ACTIONS(3670), 1, sym_system_lib_string, - STATE(1729), 2, + STATE(1854), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3642), 5, + ACTIONS(3646), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [46813] = 8, + [48777] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - STATE(383), 1, - sym_compound_statement, - STATE(1249), 1, - sym_parameter_list, - STATE(1277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [46839] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3628), 1, - anon_sym_LBRACK, - STATE(1466), 1, - sym_gnu_asm_input_operand, - STATE(1777), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [46859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, - anon_sym_LPAREN2, - STATE(1249), 1, + STATE(458), 1, + sym_compound_statement, + STATE(1000), 1, + sym__old_style_parameter_list, + STATE(1284), 1, sym_parameter_list, - ACTIONS(3666), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [46883] = 8, + [48806] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3508), 1, anon_sym_LPAREN2, - STATE(208), 1, + ACTIONS(3512), 1, + anon_sym_LBRACK, + STATE(397), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1000), 1, + sym__old_style_parameter_list, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [46909] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3668), 1, - sym_identifier, - STATE(1315), 1, - sym_string_literal, - STATE(1507), 1, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [46929] = 3, + [48835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3674), 1, anon_sym_LBRACK, - ACTIONS(3670), 7, + ACTIONS(3672), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109437,12 +111241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [46945] = 3, + [48851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, + ACTIONS(3678), 1, anon_sym_LBRACK, - ACTIONS(3674), 7, + ACTIONS(3676), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109450,33 +111254,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [46961] = 3, + [48867] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3680), 1, - anon_sym_LBRACK, - ACTIONS(3678), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [46977] = 3, + sym_identifier, + STATE(1322), 1, + sym_string_literal, + STATE(1480), 1, + sym_concatenated_string, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [48887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, + anon_sym_STAR, + STATE(1763), 1, + sym_ms_call_modifier, + ACTIONS(3684), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48905] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3684), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3682), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3518), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [46993] = 3, + STATE(144), 1, + sym_compound_statement, + STATE(1284), 1, + sym_parameter_list, + STATE(1299), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [48931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3688), 1, @@ -109489,22 +111314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [47009] = 5, + [48947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, - anon_sym_LBRACK, - STATE(1455), 1, - sym_gnu_asm_output_operand, - STATE(1699), 1, + ACTIONS(3680), 1, + sym_identifier, + STATE(1327), 1, sym_string_literal, + STATE(1492), 1, + sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [47029] = 3, + [48967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3692), 1, @@ -109517,30 +111342,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [47045] = 8, + [48983] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(154), 1, - sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + ACTIONS(3694), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [47071] = 4, + [49007] = 4, ACTIONS(3), 1, sym_comment, - STATE(1387), 1, + ACTIONS(3696), 1, + anon_sym_STAR, + STATE(1787), 1, + sym_ms_call_modifier, + ACTIONS(3684), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [49025] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1451), 1, sym_string_literal, - ACTIONS(3694), 2, + ACTIONS(3698), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(95), 5, @@ -109549,48 +111387,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [47089] = 8, + [49043] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + STATE(381), 1, + sym_compound_statement, + STATE(1284), 1, + sym_parameter_list, + STATE(1299), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [49069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3608), 1, + anon_sym_LBRACK, + STATE(1539), 1, + sym_gnu_asm_input_operand, + STATE(1772), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [49089] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(3512), 1, + anon_sym_LBRACK, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + STATE(397), 1, + sym_compound_statement, + STATE(1284), 1, + sym_parameter_list, + STATE(1299), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [49115] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3512), 1, + anon_sym_LBRACK, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(378), 1, + STATE(214), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [47115] = 8, + [49141] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - STATE(457), 1, + STATE(458), 1, sym_compound_statement, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [47141] = 3, + [49167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, + ACTIONS(3702), 1, anon_sym_LBRACK, - ACTIONS(3696), 7, + ACTIONS(3700), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109598,27 +111487,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [47157] = 5, + [49183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, - sym_identifier, - STATE(1311), 1, + ACTIONS(3612), 1, + anon_sym_LBRACK, + STATE(1529), 1, + sym_gnu_asm_output_operand, + STATE(1711), 1, sym_string_literal, - STATE(1449), 1, - sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [47177] = 3, + [49203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3702), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3700), 7, + ACTIONS(3704), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109626,269 +111515,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [47193] = 3, + [49219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3708), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [49235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3714), 1, + anon_sym_LBRACK, + ACTIONS(3712), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [49251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3716), 1, + anon_sym_STAR, + STATE(1720), 1, + sym_ms_call_modifier, + ACTIONS(3684), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [49269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3720), 1, anon_sym_LBRACK, - ACTIONS(3704), 6, + ACTIONS(3718), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47208] = 8, + [49284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 7, + anon_sym_STAR, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [49297] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2631), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(3708), 1, + ACTIONS(3724), 1, sym_identifier, - STATE(895), 1, + STATE(783), 1, sym_field_declaration_list, - STATE(1374), 1, + STATE(1389), 1, sym_attribute_specifier, - STATE(1458), 1, + STATE(1471), 1, sym_ms_declspec_modifier, - [47233] = 3, + [49322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 1, + ACTIONS(3728), 1, anon_sym_LBRACK, - ACTIONS(3710), 6, + ACTIONS(3726), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47248] = 7, + [49337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, - anon_sym_LPAREN2, - ACTIONS(3558), 1, + ACTIONS(3732), 1, anon_sym_LBRACK, - ACTIONS(3714), 1, + ACTIONS(3730), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1329), 1, - sym_parameter_list, - STATE(1298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [47271] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [49352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(3736), 1, anon_sym_LBRACK, - ACTIONS(3716), 6, + ACTIONS(3734), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47286] = 7, + [49367] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3564), 1, anon_sym_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3738), 1, anon_sym_RPAREN, - STATE(1354), 1, + STATE(1343), 1, sym_parameter_list, STATE(1321), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [47309] = 3, + [49390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3722), 6, + ACTIONS(3740), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47324] = 3, + [49405] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + ACTIONS(3588), 1, anon_sym_LBRACK, - ACTIONS(3726), 6, - anon_sym_COMMA, + ACTIONS(3744), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [47339] = 7, + STATE(1365), 1, + sym_parameter_list, + STATE(1325), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [49428] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3730), 1, + ACTIONS(3746), 1, anon_sym_RPAREN, - STATE(1249), 1, + STATE(1284), 1, sym_parameter_list, - STATE(1277), 2, + STATE(1299), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [47362] = 3, + [49451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3732), 6, + ACTIONS(3748), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47377] = 3, + [49466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, + ACTIONS(3754), 1, anon_sym_LBRACK, - ACTIONS(3736), 6, + ACTIONS(3752), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47392] = 3, + [49481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, + ACTIONS(3758), 1, anon_sym_LBRACK, - ACTIONS(3740), 6, + ACTIONS(3756), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47407] = 3, + [49496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3762), 1, anon_sym_LBRACK, - ACTIONS(3744), 6, + ACTIONS(3760), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [47422] = 5, + [49511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, + ACTIONS(3766), 1, anon_sym_LBRACK, - STATE(1375), 1, + STATE(1397), 1, sym_parameter_list, - ACTIONS(3748), 3, + ACTIONS(3764), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [47440] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1844), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [47454] = 4, + [49529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3768), 1, anon_sym_LPAREN2, - STATE(1361), 2, + STATE(1381), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3754), 3, + ACTIONS(3770), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [47470] = 5, + [49545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3775), 1, + anon_sym_EQ, + ACTIONS(3777), 1, + anon_sym_DOT, + STATE(1374), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [49563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, + ACTIONS(3766), 1, anon_sym_LBRACK, - STATE(1375), 1, + STATE(1397), 1, sym_parameter_list, - ACTIONS(3756), 3, + ACTIONS(3780), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [47488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3758), 1, - anon_sym_LPAREN2, - STATE(1358), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3754), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [47504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3760), 1, - anon_sym_LPAREN2, - STATE(1361), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3762), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [47520] = 5, + [49581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, + ACTIONS(3766), 1, anon_sym_LBRACK, - STATE(1375), 1, + STATE(1397), 1, sym_parameter_list, - ACTIONS(3765), 3, + ACTIONS(3782), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [47538] = 3, + [49599] = 3, ACTIONS(3), 1, sym_comment, - STATE(1866), 1, + STATE(678), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -109896,36 +111814,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [47552] = 5, + [49613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3784), 1, + anon_sym_LPAREN2, + STATE(1378), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3786), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [49629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1993), 1, + ACTIONS(2007), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3789), 1, anon_sym_EQ, - ACTIONS(3769), 1, + ACTIONS(3791), 1, anon_sym_DOT, - STATE(1367), 3, + STATE(1374), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [47570] = 5, + [49647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, + ACTIONS(3766), 1, anon_sym_LBRACK, - STATE(1375), 1, + STATE(1397), 1, sym_parameter_list, - ACTIONS(3771), 3, + ACTIONS(3793), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [47588] = 3, + [49665] = 4, ACTIONS(3), 1, sym_comment, - STATE(1479), 1, + ACTIONS(3795), 1, + anon_sym_LPAREN2, + STATE(1378), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3770), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [49681] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1534), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -109933,49 +111875,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [47602] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3773), 1, - anon_sym_LBRACK, - ACTIONS(3776), 1, - anon_sym_EQ, - ACTIONS(3778), 1, - anon_sym_DOT, - STATE(1367), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [47620] = 5, + [49695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, + ACTIONS(3766), 1, anon_sym_LBRACK, - STATE(1375), 1, + STATE(1397), 1, sym_parameter_list, - ACTIONS(3781), 3, + ACTIONS(3797), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [47638] = 5, + [49713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + STATE(1800), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [49727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, + ACTIONS(3766), 1, anon_sym_LBRACK, - STATE(1375), 1, + STATE(1397), 1, sym_parameter_list, - ACTIONS(3783), 3, + ACTIONS(3799), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [47656] = 3, + [49745] = 3, ACTIONS(3), 1, sym_comment, - STATE(676), 1, + STATE(1775), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -109983,3443 +111923,3453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [47670] = 2, + [49759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 5, + ACTIONS(3801), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47681] = 2, + [49770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 5, + ACTIONS(3803), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47692] = 2, + [49781] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(3805), 1, + sym_identifier, + STATE(769), 1, + sym_field_declaration_list, + STATE(1486), 1, + sym_ms_declspec_modifier, + [49800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + ACTIONS(3809), 1, + anon_sym_COLON_COLON, + STATE(1570), 1, + sym_argument_list, + ACTIONS(3807), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [49817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3789), 5, + ACTIONS(3811), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47703] = 6, + [49828] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2631), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, + ACTIONS(3813), 1, sym_identifier, - STATE(866), 1, + STATE(786), 1, sym_field_declaration_list, - STATE(1453), 1, + STATE(1473), 1, sym_ms_declspec_modifier, - [47722] = 2, + [49847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 5, + ACTIONS(3815), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47733] = 2, + [49858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 5, + ACTIONS(3817), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47744] = 2, + [49869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 5, + ACTIONS(3819), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47755] = 2, + [49880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 5, + ACTIONS(3821), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47766] = 2, + [49891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 5, + ACTIONS(3823), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47777] = 2, + [49902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 5, + ACTIONS(3825), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47788] = 2, + [49913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + ACTIONS(3766), 1, + anon_sym_LBRACK, + STATE(1397), 1, + sym_parameter_list, + ACTIONS(3694), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 5, + ACTIONS(3827), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47799] = 2, + [49941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 5, + ACTIONS(3829), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [47810] = 5, + [49952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - ACTIONS(3811), 1, - anon_sym_COLON_COLON, - STATE(1546), 1, - sym_argument_list, - ACTIONS(3809), 2, + ACTIONS(3831), 5, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [47827] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [49963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2631), 1, - anon_sym_LBRACE, - ACTIONS(3813), 1, - sym_identifier, - STATE(859), 1, - sym_field_declaration_list, - STATE(1454), 1, - sym_ms_declspec_modifier, - [47846] = 2, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3833), 1, + anon_sym_SEMI, + STATE(1286), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [49977] = 5, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + aux_sym_string_literal_token1, + ACTIONS(3839), 1, + sym_escape_sequence, + STATE(1413), 1, + aux_sym_string_literal_repeat1, + [49993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 5, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3841), 1, + anon_sym_SEMI, + STATE(1286), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [50007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym___except, + ACTIONS(3845), 1, + anon_sym___finally, + STATE(257), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [50021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3847), 1, + anon_sym___except, + ACTIONS(3849), 1, + anon_sym___finally, + STATE(131), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [50035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3851), 1, + anon_sym_SEMI, + STATE(1461), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [50049] = 5, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3853), 1, + anon_sym_DQUOTE, + ACTIONS(3855), 1, + aux_sym_string_literal_token1, + ACTIONS(3857), 1, + sym_escape_sequence, + STATE(1432), 1, + aux_sym_string_literal_repeat1, + [50065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3859), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [50075] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3861), 1, + anon_sym_SEMI, + STATE(1405), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [50089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3863), 1, + anon_sym_SEMI, + STATE(1286), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [50103] = 5, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3855), 1, + aux_sym_string_literal_token1, + ACTIONS(3857), 1, + sym_escape_sequence, + ACTIONS(3865), 1, + anon_sym_DQUOTE, + STATE(1432), 1, + aux_sym_string_literal_repeat1, + [50119] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 1, anon_sym_COMMA, + ACTIONS(3869), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [47857] = 5, + STATE(1499), 1, + aux_sym_parameter_list_repeat1, + STATE(1508), 1, + aux_sym__old_style_parameter_list_repeat1, + [50135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3871), 1, + anon_sym_COMMA, + STATE(1415), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(3874), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [50149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, - anon_sym_LBRACK, - STATE(1375), 1, - sym_parameter_list, - ACTIONS(3666), 2, + STATE(1615), 1, + sym_argument_list, + ACTIONS(3876), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [47874] = 4, + anon_sym_RBRACK_RBRACK, + [50163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_COMMA, - STATE(1413), 1, + STATE(1463), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3819), 2, + ACTIONS(3880), 2, anon_sym_RPAREN, anon_sym_COLON, - [47888] = 4, + [50177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(3560), 1, anon_sym_COMMA, - STATE(1436), 1, + STATE(1437), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3882), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [50191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3884), 1, + anon_sym_COMMA, + STATE(1439), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3886), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_COMMA, + STATE(1415), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(3821), 2, + ACTIONS(3888), 2, anon_sym_SEMI, anon_sym___attribute__, - [47902] = 5, - ACTIONS(3299), 1, + [50219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3890), 1, + sym_identifier, + ACTIONS(3892), 1, + anon_sym_COMMA, + ACTIONS(3894), 1, + anon_sym_RBRACE, + STATE(1479), 1, + sym_enumerator, + [50235] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3896), 1, aux_sym_preproc_include_token2, - ACTIONS(3825), 1, + ACTIONS(3898), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3900), 1, sym_preproc_arg, - STATE(1593), 1, + STATE(1627), 1, sym_preproc_params, - [47918] = 5, - ACTIONS(3299), 1, + [50251] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_DQUOTE, - ACTIONS(3831), 1, - aux_sym_string_literal_token1, - ACTIONS(3833), 1, - sym_escape_sequence, - STATE(1441), 1, - aux_sym_string_literal_repeat1, - [47934] = 4, - ACTIONS(3), 1, + ACTIONS(3898), 1, + anon_sym_LPAREN, + ACTIONS(3902), 1, + aux_sym_preproc_include_token2, + ACTIONS(3904), 1, + sym_preproc_arg, + STATE(1630), 1, + sym_preproc_params, + [50267] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3835), 1, - anon_sym_COMMA, - STATE(1391), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3838), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [47948] = 5, - ACTIONS(3299), 1, + ACTIONS(3898), 1, + anon_sym_LPAREN, + ACTIONS(3906), 1, + aux_sym_preproc_include_token2, + ACTIONS(3908), 1, + sym_preproc_arg, + STATE(1635), 1, + sym_preproc_params, + [50283] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3898), 1, anon_sym_LPAREN, - ACTIONS(3840), 1, + ACTIONS(3910), 1, aux_sym_preproc_include_token2, - ACTIONS(3842), 1, + ACTIONS(3912), 1, sym_preproc_arg, - STATE(1588), 1, + STATE(1647), 1, sym_preproc_params, - [47964] = 4, + [50299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3844), 1, + ACTIONS(3914), 1, anon_sym_SEMI, - STATE(1266), 2, + STATE(1286), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [47978] = 4, + [50313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3846), 1, + ACTIONS(3916), 1, anon_sym_SEMI, - STATE(1266), 2, + STATE(1286), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [47992] = 4, + [50327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_COMMA, - STATE(1428), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3848), 2, - anon_sym_SEMI, + ACTIONS(3501), 1, anon_sym___attribute__, - [48006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_COMMA, - STATE(1427), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3850), 2, + ACTIONS(3918), 1, anon_sym_SEMI, - anon_sym___attribute__, - [48020] = 4, + STATE(1286), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [50341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3852), 1, + ACTIONS(3920), 1, anon_sym_SEMI, - STATE(1266), 2, + STATE(1427), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48034] = 4, + [50355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3854), 1, + ACTIONS(3922), 1, anon_sym_SEMI, - STATE(1393), 2, + STATE(1412), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48048] = 4, + [50369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym_COMMA, - STATE(1422), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3858), 2, + ACTIONS(3518), 1, + anon_sym_LPAREN2, + ACTIONS(3766), 1, + anon_sym_LBRACK, + ACTIONS(3924), 1, anon_sym_RPAREN, - anon_sym_COLON, - [48062] = 4, + STATE(1397), 1, + sym_parameter_list, + [50385] = 5, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3926), 1, + anon_sym_DQUOTE, + ACTIONS(3928), 1, + aux_sym_string_literal_token1, + ACTIONS(3931), 1, + sym_escape_sequence, + STATE(1432), 1, + aux_sym_string_literal_repeat1, + [50401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, + ACTIONS(3560), 1, anon_sym_COMMA, - STATE(1448), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3862), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [48076] = 5, + STATE(1436), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3934), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [50415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, - sym_identifier, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - STATE(1498), 1, - sym_enumerator, - [48092] = 4, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(3936), 1, + anon_sym_SEMI, + STATE(1403), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [50429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, + ACTIONS(3938), 1, anon_sym___except, - ACTIONS(3872), 1, + ACTIONS(3940), 1, anon_sym___finally, - STATE(189), 2, + STATE(254), 2, sym_seh_except_clause, sym_seh_finally_clause, - [48106] = 5, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3874), 1, - aux_sym_preproc_include_token2, - ACTIONS(3876), 1, - sym_preproc_arg, - STATE(1597), 1, - sym_preproc_params, - [48122] = 4, + [50443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3878), 1, + ACTIONS(3560), 1, + anon_sym_COMMA, + STATE(1437), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3942), 2, anon_sym_SEMI, - STATE(1397), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48136] = 5, + anon_sym___attribute__, + [50457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3944), 1, anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RPAREN, - STATE(1482), 1, - aux_sym_parameter_list_repeat1, - STATE(1506), 1, - aux_sym__old_style_parameter_list_repeat1, - [48152] = 4, + STATE(1437), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3947), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [50471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3884), 1, + ACTIONS(3949), 1, anon_sym_SEMI, - STATE(1414), 2, + STATE(1428), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48166] = 4, + [50485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - anon_sym___except, - ACTIONS(3888), 1, - anon_sym___finally, - STATE(319), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [48180] = 5, - ACTIONS(3299), 1, + ACTIONS(3884), 1, + anon_sym_COMMA, + STATE(1445), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3951), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50499] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3898), 1, anon_sym_LPAREN, - ACTIONS(3890), 1, + ACTIONS(3953), 1, aux_sym_preproc_include_token2, - ACTIONS(3892), 1, + ACTIONS(3955), 1, sym_preproc_arg, - STATE(1555), 1, + STATE(1565), 1, sym_preproc_params, - [48196] = 5, - ACTIONS(3299), 1, + [50515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3957), 1, + anon_sym_COMMA, + STATE(1446), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3959), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50529] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3898), 1, anon_sym_LPAREN, - ACTIONS(3894), 1, + ACTIONS(3961), 1, aux_sym_preproc_include_token2, - ACTIONS(3896), 1, + ACTIONS(3963), 1, sym_preproc_arg, - STATE(1598), 1, + STATE(1580), 1, sym_preproc_params, - [48212] = 4, - ACTIONS(3), 1, + [50545] = 5, + ACTIONS(3319), 1, sym_comment, ACTIONS(3898), 1, - anon_sym___except, - ACTIONS(3900), 1, - anon_sym___finally, - STATE(319), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [48226] = 5, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3825), 1, anon_sym_LPAREN, - ACTIONS(3902), 1, + ACTIONS(3965), 1, aux_sym_preproc_include_token2, - ACTIONS(3904), 1, + ACTIONS(3967), 1, sym_preproc_arg, - STATE(1623), 1, + STATE(1642), 1, sym_preproc_params, - [48242] = 5, - ACTIONS(3299), 1, + [50561] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3898), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3969), 1, aux_sym_preproc_include_token2, - ACTIONS(3908), 1, + ACTIONS(3971), 1, sym_preproc_arg, - STATE(1537), 1, + STATE(1643), 1, sym_preproc_params, - [48258] = 4, + [50577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3817), 1, + ACTIONS(3973), 1, anon_sym_COMMA, - STATE(1391), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3910), 2, + STATE(1445), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3976), 2, anon_sym_RPAREN, anon_sym_COLON, - [48272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3912), 1, - anon_sym_SEMI, - STATE(1266), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3914), 1, - anon_sym_SEMI, - STATE(1266), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - STATE(1630), 1, - sym_argument_list, - ACTIONS(3916), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [48314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3918), 1, - anon_sym_SEMI, - STATE(1394), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3920), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [48338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3922), 1, - anon_sym_SEMI, - STATE(1266), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48352] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3924), 1, - anon_sym_SEMI, - STATE(1435), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48366] = 5, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3926), 1, - aux_sym_preproc_include_token2, - ACTIONS(3928), 1, - sym_preproc_arg, - STATE(1624), 1, - sym_preproc_params, - [48382] = 4, + [50591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(3957), 1, anon_sym_COMMA, - STATE(1422), 1, + STATE(1455), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3933), 2, + ACTIONS(3978), 2, anon_sym_RPAREN, anon_sym_COLON, - [48396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3935), 1, - anon_sym_SEMI, - STATE(1266), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48410] = 5, - ACTIONS(3299), 1, + [50605] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3831), 1, + ACTIONS(3980), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, aux_sym_string_literal_token1, - ACTIONS(3833), 1, + ACTIONS(3984), 1, sym_escape_sequence, - ACTIONS(3937), 1, - anon_sym_DQUOTE, - STATE(1441), 1, + STATE(1460), 1, aux_sym_string_literal_repeat1, - [48426] = 5, - ACTIONS(3299), 1, + [50621] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3939), 1, + ACTIONS(3986), 1, anon_sym_DQUOTE, - ACTIONS(3941), 1, + ACTIONS(3988), 1, aux_sym_string_literal_token1, - ACTIONS(3943), 1, + ACTIONS(3990), 1, sym_escape_sequence, - STATE(1424), 1, + STATE(1409), 1, aux_sym_string_literal_repeat1, - [48442] = 4, + [50637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3945), 1, + ACTIONS(3992), 1, anon_sym_SEMI, - STATE(1415), 2, + STATE(1426), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 1, - anon_sym_COMMA, - STATE(1427), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3950), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [48470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_COMMA, - STATE(1427), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3952), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [48484] = 5, - ACTIONS(3299), 1, + [50651] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3898), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3994), 1, aux_sym_preproc_include_token2, - ACTIONS(3956), 1, + ACTIONS(3996), 1, sym_preproc_arg, STATE(1608), 1, sym_preproc_params, - [48500] = 4, + [50667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(3878), 1, anon_sym_COMMA, - STATE(1430), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3961), 2, + STATE(1417), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3998), 2, anon_sym_RPAREN, anon_sym_COLON, - [48514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(3963), 1, - anon_sym_SEMI, - STATE(1266), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [48528] = 4, + [50681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3965), 1, + ACTIONS(4000), 1, anon_sym_SEMI, - STATE(1446), 2, + STATE(1286), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48542] = 4, + [50695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4002), 1, anon_sym___except, - ACTIONS(3969), 1, + ACTIONS(4004), 1, anon_sym___finally, - STATE(352), 2, + STATE(257), 2, sym_seh_except_clause, sym_seh_finally_clause, - [48556] = 4, + [50709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3971), 1, + ACTIONS(4006), 1, anon_sym_SEMI, - STATE(1419), 2, + STATE(1286), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48570] = 4, + [50723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(4008), 1, + anon_sym_COMMA, + STATE(1455), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4011), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3973), 1, + ACTIONS(4013), 1, anon_sym_SEMI, - STATE(1266), 2, + STATE(1286), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3975), 1, - anon_sym_COMMA, - STATE(1436), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3978), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [48598] = 4, + [50751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3980), 1, + ACTIONS(4015), 1, anon_sym_SEMI, - STATE(1431), 2, + STATE(1456), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48612] = 5, + [50765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LPAREN2, - ACTIONS(3750), 1, - anon_sym_LBRACK, - ACTIONS(3982), 1, - anon_sym_RPAREN, - STATE(1375), 1, - sym_parameter_list, - [48628] = 4, + ACTIONS(4017), 1, + anon_sym___except, + ACTIONS(4019), 1, + anon_sym___finally, + STATE(289), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [50779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(3984), 1, + ACTIONS(4021), 1, anon_sym_SEMI, - STATE(1423), 2, + STATE(1452), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym_COMMA, - STATE(1399), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3986), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [48656] = 5, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3988), 1, - anon_sym_DQUOTE, - ACTIONS(3990), 1, - aux_sym_string_literal_token1, - ACTIONS(3993), 1, - sym_escape_sequence, - STATE(1441), 1, - aux_sym_string_literal_repeat1, - [48672] = 5, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3996), 1, - anon_sym_DQUOTE, - ACTIONS(3998), 1, - aux_sym_string_literal_token1, - ACTIONS(4000), 1, - sym_escape_sequence, - STATE(1390), 1, - aux_sym_string_literal_repeat1, - [48688] = 5, - ACTIONS(3299), 1, + [50793] = 5, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3831), 1, + ACTIONS(3855), 1, aux_sym_string_literal_token1, - ACTIONS(3833), 1, + ACTIONS(3857), 1, sym_escape_sequence, - ACTIONS(4002), 1, - anon_sym_DQUOTE, - STATE(1441), 1, - aux_sym_string_literal_repeat1, - [48704] = 5, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4004), 1, + ACTIONS(4023), 1, anon_sym_DQUOTE, - ACTIONS(4006), 1, - aux_sym_string_literal_token1, - ACTIONS(4008), 1, - sym_escape_sequence, - STATE(1443), 1, + STATE(1432), 1, aux_sym_string_literal_repeat1, - [48720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym___except, - ACTIONS(4012), 1, - anon_sym___finally, - STATE(253), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [48734] = 4, + [50809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(4014), 1, + ACTIONS(4025), 1, anon_sym_SEMI, - STATE(1266), 2, + STATE(1286), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [48748] = 4, + [50823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4027), 1, anon_sym___except, - ACTIONS(4018), 1, + ACTIONS(4029), 1, anon_sym___finally, - STATE(113), 2, + STATE(182), 2, sym_seh_except_clause, sym_seh_finally_clause, - [48762] = 4, + [50837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, + ACTIONS(4031), 1, anon_sym_COMMA, - STATE(1430), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4020), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [48776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 1, + STATE(1463), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4034), 2, anon_sym_RPAREN, - ACTIONS(3634), 1, anon_sym_COLON, - STATE(1514), 1, - sym_gnu_asm_output_operand_list, - [48789] = 4, + [50851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(4022), 1, + ACTIONS(4036), 1, anon_sym_SEMI, - STATE(1688), 1, + STATE(1454), 2, sym_attribute_specifier, - [48802] = 4, + aux_sym_type_definition_repeat1, + [50865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(4038), 1, anon_sym_RPAREN, - ACTIONS(4026), 1, + ACTIONS(4040), 1, anon_sym_COLON, - STATE(1851), 1, - sym_gnu_asm_goto_list, - [48815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(4028), 1, - sym_identifier, - STATE(1096), 1, - sym_enumerator_list, - [48828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2631), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - sym_identifier, - STATE(867), 1, - sym_field_declaration_list, - [48841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2631), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - sym_identifier, - STATE(889), 1, - sym_field_declaration_list, - [48854] = 2, + STATE(1505), 1, + sym_gnu_asm_input_operand_list, + [50878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 3, + ACTIONS(4042), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [48863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_COMMA, - ACTIONS(3051), 1, - anon_sym_RPAREN, - STATE(1481), 1, - aux_sym_argument_list_repeat1, - [48876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3071), 1, - anon_sym_RBRACE, - STATE(1510), 1, - aux_sym_initializer_list_repeat1, - [48889] = 4, + [50887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 1, + ACTIONS(2885), 1, anon_sym_LBRACE, - ACTIONS(4036), 1, + ACTIONS(4044), 1, sym_identifier, - STATE(866), 1, - sym_field_declaration_list, - [48902] = 4, + STATE(946), 1, + sym_enumerator_list, + [50900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(4038), 1, + ACTIONS(4046), 1, anon_sym_RPAREN, - STATE(1477), 1, - aux_sym_generic_expression_repeat1, - [48915] = 4, - ACTIONS(3299), 1, + STATE(1511), 1, + aux_sym_argument_list_repeat1, + [50913] = 4, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4040), 1, + ACTIONS(4048), 1, aux_sym_preproc_include_token2, - ACTIONS(4042), 1, + ACTIONS(4050), 1, anon_sym_LPAREN2, - STATE(1716), 1, + STATE(1842), 1, sym_preproc_argument_list, - [48928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3864), 1, - sym_identifier, - ACTIONS(4044), 1, - anon_sym_RBRACE, - STATE(1563), 1, - sym_enumerator, - [48941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4046), 1, - anon_sym_COMMA, - ACTIONS(4049), 1, - anon_sym_RPAREN, - STATE(1462), 1, - aux_sym__old_style_parameter_list_repeat1, - [48954] = 2, + [50926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 3, + ACTIONS(4052), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [48963] = 4, + ACTIONS(4054), 1, + anon_sym_RBRACK_RBRACK, + STATE(1476), 1, + aux_sym_attribute_declaration_repeat1, + [50939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_SEMI, - STATE(1502), 1, - aux_sym__declaration_declarator_repeat1, - [48976] = 4, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(4056), 1, + sym_identifier, + STATE(769), 1, + sym_field_declaration_list, + [50952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4052), 1, anon_sym_COMMA, - ACTIONS(4057), 1, + ACTIONS(4058), 1, anon_sym_RBRACK_RBRACK, - STATE(1485), 1, + STATE(1501), 1, aux_sym_attribute_declaration_repeat1, - [48989] = 2, + [50965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [48998] = 4, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(4060), 1, + sym_identifier, + STATE(797), 1, + sym_field_declaration_list, + [50978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(4061), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - STATE(1501), 1, + STATE(1483), 1, aux_sym__declaration_declarator_repeat1, - [49011] = 4, + [50991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_COMMA, - ACTIONS(4066), 1, - anon_sym_RBRACE, - STATE(1468), 1, - aux_sym_enumerator_list_repeat1, - [49024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3498), 1, - anon_sym_COMMA, - ACTIONS(4061), 1, - anon_sym_SEMI, - STATE(1501), 1, - aux_sym__declaration_declarator_repeat1, - [49037] = 4, + ACTIONS(4064), 1, + anon_sym_RPAREN, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [51002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(4052), 1, anon_sym_COMMA, - ACTIONS(3053), 1, - anon_sym_RPAREN, - STATE(1499), 1, - aux_sym_argument_list_repeat1, - [49050] = 4, + ACTIONS(4066), 1, + anon_sym_RBRACK_RBRACK, + STATE(1488), 1, + aux_sym_attribute_declaration_repeat1, + [51015] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2885), 1, + anon_sym_LBRACE, ACTIONS(4068), 1, - anon_sym_COMMA, - ACTIONS(4070), 1, - anon_sym_RPAREN, - STATE(1484), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [49063] = 4, - ACTIONS(3299), 1, + sym_identifier, + STATE(1009), 1, + sym_enumerator_list, + [51028] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, - anon_sym_LPAREN2, ACTIONS(4072), 1, - aux_sym_preproc_include_token2, - STATE(1716), 1, - sym_preproc_argument_list, - [49076] = 4, + anon_sym_EQ, + ACTIONS(4070), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51039] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4074), 1, anon_sym_COMMA, ACTIONS(4076), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, STATE(1490), 1, - aux_sym_preproc_params_repeat1, - [49089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(4078), 1, - anon_sym_SEMI, - STATE(1832), 1, - sym_attribute_specifier, - [49102] = 4, + aux_sym_enumerator_list_repeat1, + [51052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3638), 1, anon_sym_RPAREN, - ACTIONS(4082), 1, - anon_sym_COLON, - STATE(1451), 1, - sym_gnu_asm_clobber_list, - [49115] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4026), 1, + ACTIONS(3640), 1, anon_sym_COLON, - ACTIONS(4084), 1, - anon_sym_RPAREN, - STATE(1638), 1, - sym_gnu_asm_goto_list, - [49128] = 4, + STATE(1465), 1, + sym_gnu_asm_output_operand_list, + [51065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_RPAREN, - STATE(1477), 1, - aux_sym_generic_expression_repeat1, - [49141] = 2, + ACTIONS(4078), 1, + anon_sym_SEMI, + STATE(1493), 1, + aux_sym__declaration_declarator_repeat1, + [51078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 3, + ACTIONS(3506), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [49150] = 2, + ACTIONS(4080), 1, + anon_sym_SEMI, + STATE(1494), 1, + aux_sym__declaration_declarator_repeat1, + [51091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 3, + ACTIONS(3506), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [49159] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(4095), 1, - sym_identifier, - STATE(982), 1, - sym_enumerator_list, - [49172] = 4, + ACTIONS(4080), 1, + anon_sym_SEMI, + STATE(1494), 1, + aux_sym__declaration_declarator_repeat1, + [51104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(3055), 1, + ACTIONS(3073), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1495), 1, aux_sym_argument_list_repeat1, - [49185] = 4, + [51117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4099), 1, + ACTIONS(4084), 1, anon_sym_RPAREN, - STATE(1526), 1, - aux_sym_parameter_list_repeat1, - [49198] = 4, + STATE(1496), 1, + aux_sym_preproc_params_repeat1, + [51130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, - anon_sym_COMMA, - ACTIONS(4101), 1, - anon_sym_RPAREN, - STATE(1529), 1, - aux_sym_preproc_argument_list_repeat1, - [49211] = 4, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(4086), 1, + sym_identifier, + STATE(766), 1, + sym_field_declaration_list, + [51143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 1, + ACTIONS(4088), 1, anon_sym_COMMA, - ACTIONS(4103), 1, + ACTIONS(4090), 1, anon_sym_RPAREN, - STATE(1525), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [49224] = 4, + STATE(1499), 1, + aux_sym_parameter_list_repeat1, + [51156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4092), 1, anon_sym_COMMA, - ACTIONS(4105), 1, + ACTIONS(4095), 1, anon_sym_RBRACK_RBRACK, - STATE(1512), 1, + STATE(1488), 1, aux_sym_attribute_declaration_repeat1, - [49237] = 4, + [51169] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3890), 1, + sym_identifier, ACTIONS(4097), 1, - anon_sym_COMMA, - ACTIONS(4107), 1, - anon_sym_RPAREN, - STATE(1482), 1, - aux_sym_parameter_list_repeat1, - [49250] = 4, + anon_sym_RBRACE, + STATE(1617), 1, + sym_enumerator, + [51182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4097), 1, + anon_sym_RBRACE, + ACTIONS(4099), 1, anon_sym_COMMA, - ACTIONS(4109), 1, - anon_sym_RBRACK_RBRACK, - STATE(1505), 1, - aux_sym_attribute_declaration_repeat1, - [49263] = 4, + STATE(1504), 1, + aux_sym_enumerator_list_repeat1, + [51195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3501), 1, anon_sym___attribute__, - ACTIONS(4111), 1, + ACTIONS(4101), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1719), 1, sym_attribute_specifier, - [49276] = 2, + [51208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [49285] = 4, + ACTIONS(3640), 1, + anon_sym_COLON, + ACTIONS(3654), 1, + anon_sym_RPAREN, + STATE(1519), 1, + sym_gnu_asm_output_operand_list, + [51221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_RPAREN, - STATE(1528), 1, - aux_sym_preproc_params_repeat1, - [49298] = 4, + ACTIONS(4103), 1, + anon_sym_SEMI, + STATE(1494), 1, + aux_sym__declaration_declarator_repeat1, + [51234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_RBRACE, - ACTIONS(4117), 1, + ACTIONS(4105), 1, anon_sym_COMMA, - STATE(1491), 1, - aux_sym_initializer_list_repeat1, - [49311] = 4, + ACTIONS(4108), 1, + anon_sym_SEMI, + STATE(1494), 1, + aux_sym__declaration_declarator_repeat1, + [51247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(4120), 1, + ACTIONS(3075), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1511), 1, aux_sym_argument_list_repeat1, - [49324] = 4, + [51260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 1, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(3502), 1, - anon_sym_SEMI, - STATE(1469), 1, - aux_sym__declaration_declarator_repeat1, - [49337] = 4, + ACTIONS(4110), 1, + anon_sym_RPAREN, + STATE(1514), 1, + aux_sym_preproc_params_repeat1, + [51273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(3289), 1, anon_sym_COMMA, - ACTIONS(4122), 1, + ACTIONS(4112), 1, anon_sym_RPAREN, - STATE(1529), 1, + STATE(1513), 1, aux_sym_preproc_argument_list_repeat1, - [49350] = 4, + [51286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(4124), 1, - sym_identifier, - STATE(1096), 1, - sym_enumerator_list, - [49363] = 4, + ACTIONS(3071), 1, + anon_sym_COMMA, + ACTIONS(3093), 1, + anon_sym_RPAREN, + STATE(1511), 1, + aux_sym_argument_list_repeat1, + [51299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(4088), 1, + anon_sym_COMMA, + ACTIONS(4114), 1, anon_sym_RPAREN, - ACTIONS(4128), 1, - anon_sym_COLON, - STATE(1475), 1, - sym_gnu_asm_input_operand_list, - [49376] = 2, + STATE(1515), 1, + aux_sym_parameter_list_repeat1, + [51312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4130), 3, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3501), 1, anon_sym___attribute__, - [49385] = 4, + ACTIONS(4116), 1, + anon_sym_SEMI, + STATE(1765), 1, + sym_attribute_specifier, + [51325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4052), 1, anon_sym_COMMA, - ACTIONS(4134), 1, - anon_sym_RBRACE, - STATE(1522), 1, - aux_sym_enumerator_list_repeat1, - [49398] = 4, + ACTIONS(4118), 1, + anon_sym_RBRACK_RBRACK, + STATE(1488), 1, + aux_sym_attribute_declaration_repeat1, + [51338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3081), 1, anon_sym_COMMA, - ACTIONS(3045), 1, - anon_sym_RPAREN, - STATE(1523), 1, - aux_sym_argument_list_repeat1, - [49411] = 4, - ACTIONS(3299), 1, + ACTIONS(3083), 1, + anon_sym_RBRACE, + STATE(1518), 1, + aux_sym_initializer_list_repeat1, + [51351] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, - anon_sym_LPAREN2, - ACTIONS(4136), 1, - aux_sym_preproc_include_token2, - STATE(1716), 1, - sym_preproc_argument_list, - [49424] = 4, + ACTIONS(3890), 1, + sym_identifier, + ACTIONS(4120), 1, + anon_sym_RBRACE, + STATE(1617), 1, + sym_enumerator, + [51364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, + ACTIONS(4122), 1, anon_sym_COMMA, - ACTIONS(4141), 1, - anon_sym_SEMI, - STATE(1501), 1, - aux_sym__declaration_declarator_repeat1, - [49437] = 4, + ACTIONS(4125), 1, + anon_sym_RBRACE, + STATE(1504), 1, + aux_sym_enumerator_list_repeat1, + [51377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_RPAREN, + ACTIONS(4129), 1, + anon_sym_COLON, + STATE(1520), 1, + sym_gnu_asm_clobber_list, + [51390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 1, + ACTIONS(3289), 1, anon_sym_COMMA, - ACTIONS(4143), 1, - anon_sym_SEMI, - STATE(1501), 1, - aux_sym__declaration_declarator_repeat1, - [49450] = 4, + ACTIONS(4131), 1, + anon_sym_RPAREN, + STATE(1513), 1, + aux_sym_preproc_argument_list_repeat1, + [51403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(1943), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4145), 1, + ACTIONS(4133), 1, sym_identifier, - STATE(1617), 1, + STATE(1633), 1, sym_variadic_parameter, - [49463] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - anon_sym___attribute__, - ACTIONS(4147), 1, - anon_sym_SEMI, - STATE(1743), 1, - sym_attribute_specifier, - [49476] = 4, + [51416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4135), 1, anon_sym_COMMA, - ACTIONS(4149), 1, - anon_sym_RBRACK_RBRACK, - STATE(1512), 1, - aux_sym_attribute_declaration_repeat1, - [49489] = 4, + ACTIONS(4137), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym__old_style_parameter_list_repeat1, + [51429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(4153), 1, + ACTIONS(4139), 1, anon_sym_RPAREN, - STATE(1462), 1, - aux_sym__old_style_parameter_list_repeat1, - [49502] = 4, + STATE(1511), 1, + aux_sym_argument_list_repeat1, + [51442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, - anon_sym_COLON, - ACTIONS(3638), 1, + ACTIONS(3071), 1, + anon_sym_COMMA, + ACTIONS(3101), 1, anon_sym_RPAREN, - STATE(1496), 1, - sym_gnu_asm_output_operand_list, - [49515] = 4, + STATE(1498), 1, + aux_sym_argument_list_repeat1, + [51455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(3109), 1, + anon_sym_RPAREN, + ACTIONS(4141), 1, anon_sym_COMMA, - ACTIONS(4155), 1, - anon_sym_RBRACK_RBRACK, - STATE(1521), 1, - aux_sym_attribute_declaration_repeat1, - [49528] = 4, + STATE(1511), 1, + aux_sym_argument_list_repeat1, + [51468] = 4, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4050), 1, + anon_sym_LPAREN2, + ACTIONS(4144), 1, + aux_sym_preproc_include_token2, + STATE(1842), 1, + sym_preproc_argument_list, + [51481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, - anon_sym_COMMA, - ACTIONS(4157), 1, + ACTIONS(3361), 1, anon_sym_RPAREN, - STATE(1529), 1, + ACTIONS(4146), 1, + anon_sym_COMMA, + STATE(1513), 1, aux_sym_preproc_argument_list_repeat1, - [49541] = 4, + [51494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_RBRACE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_COMMA, - STATE(1491), 1, - aux_sym_initializer_list_repeat1, - [49554] = 2, + ACTIONS(4152), 1, + anon_sym_RPAREN, + STATE(1514), 1, + aux_sym_preproc_params_repeat1, + [51507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 3, + ACTIONS(4154), 1, anon_sym_COMMA, + ACTIONS(4157), 1, anon_sym_RPAREN, - anon_sym_COLON, - [49563] = 4, + STATE(1515), 1, + aux_sym_parameter_list_repeat1, + [51520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(4159), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [51529] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4052), 1, anon_sym_COMMA, - ACTIONS(4166), 1, + ACTIONS(4161), 1, anon_sym_RBRACK_RBRACK, - STATE(1512), 1, + STATE(1488), 1, aux_sym_attribute_declaration_repeat1, - [49576] = 3, + [51542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 1, - anon_sym_EQ, - ACTIONS(4168), 2, - anon_sym_COMMA, + ACTIONS(2029), 1, anon_sym_RBRACE, - [49587] = 4, + ACTIONS(4163), 1, + anon_sym_COMMA, + STATE(1526), 1, + aux_sym_initializer_list_repeat1, + [51555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 1, + ACTIONS(4040), 1, anon_sym_COLON, - ACTIONS(4172), 1, + ACTIONS(4165), 1, anon_sym_RPAREN, - STATE(1517), 1, + STATE(1521), 1, sym_gnu_asm_input_operand_list, - [49600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [49609] = 2, + [51568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 3, - anon_sym_COMMA, + ACTIONS(4167), 1, anon_sym_RPAREN, + ACTIONS(4169), 1, anon_sym_COLON, - [49618] = 4, + STATE(1759), 1, + sym_gnu_asm_goto_list, + [51581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, + ACTIONS(4129), 1, anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(4171), 1, anon_sym_RPAREN, - STATE(1476), 1, + STATE(1530), 1, sym_gnu_asm_clobber_list, - [49631] = 4, - ACTIONS(3299), 1, + [51594] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(4173), 1, + anon_sym_SEMI, + STATE(1895), 1, + sym_attribute_specifier, + [51607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 1, + anon_sym_COMMA, + ACTIONS(4178), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym__old_style_parameter_list_repeat1, + [51620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4180), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [51629] = 4, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4042), 1, + ACTIONS(4050), 1, anon_sym_LPAREN2, - ACTIONS(4180), 1, + ACTIONS(4182), 1, aux_sym_preproc_include_token2, - STATE(1716), 1, + STATE(1842), 1, sym_preproc_argument_list, - [49644] = 4, + [51642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, - sym_identifier, - ACTIONS(4182), 1, + ACTIONS(3133), 1, anon_sym_RBRACE, - STATE(1563), 1, - sym_enumerator, - [49657] = 4, + ACTIONS(4184), 1, + anon_sym_COMMA, + STATE(1526), 1, + aux_sym_initializer_list_repeat1, + [51655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3289), 1, anon_sym_COMMA, - ACTIONS(4184), 1, + ACTIONS(4187), 1, anon_sym_RPAREN, - STATE(1523), 1, - aux_sym_argument_list_repeat1, - [49670] = 4, + STATE(1513), 1, + aux_sym_preproc_argument_list_repeat1, + [51668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4189), 3, anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_RBRACK_RBRACK, - STATE(1512), 1, - aux_sym_attribute_declaration_repeat1, - [49683] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [51677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_RBRACE, - ACTIONS(4188), 1, + ACTIONS(4191), 3, anon_sym_COMMA, - STATE(1468), 1, - aux_sym_enumerator_list_repeat1, - [49696] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [51686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 1, + ACTIONS(4169), 1, + anon_sym_COLON, + ACTIONS(4193), 1, anon_sym_RPAREN, - ACTIONS(4190), 1, + STATE(1776), 1, + sym_gnu_asm_goto_list, + [51699] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 1, anon_sym_COMMA, - STATE(1523), 1, - aux_sym_argument_list_repeat1, - [49709] = 4, - ACTIONS(3299), 1, + ACTIONS(4195), 1, + anon_sym_RPAREN, + STATE(1542), 1, + aux_sym_generic_expression_repeat1, + [51712] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, - anon_sym_LPAREN2, - ACTIONS(4193), 1, - aux_sym_preproc_include_token2, - STATE(1716), 1, - sym_preproc_argument_list, - [49722] = 4, + ACTIONS(3501), 1, + anon_sym___attribute__, + ACTIONS(4197), 1, + anon_sym_SEMI, + STATE(1746), 1, + sym_attribute_specifier, + [51725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(4199), 1, anon_sym_COMMA, - ACTIONS(4198), 1, + ACTIONS(4202), 1, anon_sym_RPAREN, - STATE(1525), 1, + STATE(1533), 1, aux_sym_gnu_asm_goto_list_repeat1, - [49735] = 4, + [51738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 1, + ACTIONS(4204), 3, anon_sym_COMMA, - ACTIONS(4203), 1, anon_sym_RPAREN, - STATE(1526), 1, - aux_sym_parameter_list_repeat1, - [49748] = 3, + anon_sym_COLON, + [51747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, - anon_sym_RPAREN, - ACTIONS(4205), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(2885), 1, + anon_sym_LBRACE, + ACTIONS(4206), 1, sym_identifier, - [49759] = 4, + STATE(1009), 1, + sym_enumerator_list, + [51760] = 4, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4050), 1, + anon_sym_LPAREN2, + ACTIONS(4208), 1, + aux_sym_preproc_include_token2, + STATE(1842), 1, + sym_preproc_argument_list, + [51773] = 4, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4050), 1, + anon_sym_LPAREN2, + ACTIONS(4210), 1, + aux_sym_preproc_include_token2, + STATE(1842), 1, + sym_preproc_argument_list, + [51786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 1, + ACTIONS(4212), 3, anon_sym_COMMA, - ACTIONS(4212), 1, anon_sym_RPAREN, - STATE(1528), 1, - aux_sym_preproc_params_repeat1, - [49772] = 4, + anon_sym_COLON, + [51795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, - anon_sym_RPAREN, - ACTIONS(4214), 1, + ACTIONS(4214), 3, anon_sym_COMMA, - STATE(1529), 1, - aux_sym_preproc_argument_list_repeat1, - [49785] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [51804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym_compound_statement, - [49795] = 3, + ACTIONS(4052), 1, + anon_sym_COMMA, + ACTIONS(4216), 1, + anon_sym_RBRACK_RBRACK, + STATE(1517), 1, + aux_sym_attribute_declaration_repeat1, + [51817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_LPAREN2, - STATE(1791), 1, - sym_argument_list, - [49805] = 3, + ACTIONS(4218), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [51826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 1, - sym_identifier, - ACTIONS(4219), 1, - anon_sym_LPAREN2, - [49815] = 3, + ACTIONS(4220), 1, + anon_sym_COMMA, + ACTIONS(4223), 1, + anon_sym_RPAREN, + STATE(1542), 1, + aux_sym_generic_expression_repeat1, + [51839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1643), 1, - sym_parenthesized_expression, - [49825] = 2, + ACTIONS(4225), 1, + anon_sym_COMMA, + ACTIONS(4227), 1, + anon_sym_RPAREN, + STATE(1533), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [51852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 2, + ACTIONS(4225), 1, anon_sym_COMMA, + ACTIONS(4229), 1, anon_sym_RPAREN, - [49833] = 3, + STATE(1543), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [51865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1583), 1, - sym_parenthesized_expression, - [49843] = 3, - ACTIONS(3299), 1, + ACTIONS(4231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [51874] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4223), 1, + ACTIONS(4233), 1, aux_sym_preproc_include_token2, - ACTIONS(4225), 1, + ACTIONS(4235), 1, sym_preproc_arg, - [49853] = 3, - ACTIONS(3299), 1, + [51884] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, + ACTIONS(4157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51892] = 3, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4237), 1, aux_sym_preproc_include_token2, - ACTIONS(4229), 1, + ACTIONS(4239), 1, sym_preproc_arg, - [49863] = 3, + [51902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1847), 1, - sym_parenthesized_expression, - [49873] = 3, + ACTIONS(4241), 1, + sym_identifier, + STATE(1470), 1, + sym_attribute, + [51912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4243), 1, anon_sym_LPAREN2, - STATE(1616), 1, + STATE(418), 1, sym_parenthesized_expression, - [49883] = 2, + [51922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4212), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49891] = 2, + ACTIONS(4245), 1, + anon_sym_LPAREN2, + STATE(1559), 1, + sym_parenthesized_expression, + [51932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49899] = 3, - ACTIONS(3), 1, + ACTIONS(4243), 1, + anon_sym_LPAREN2, + STATE(413), 1, + sym_parenthesized_expression, + [51942] = 2, + ACTIONS(3319), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(177), 1, - sym_compound_statement, - [49909] = 3, - ACTIONS(3299), 1, + ACTIONS(4247), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [51950] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4249), 1, aux_sym_preproc_include_token2, - ACTIONS(4233), 1, + ACTIONS(4251), 1, sym_preproc_arg, - [49919] = 3, + [51960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, + ACTIONS(4253), 1, sym_identifier, - STATE(1549), 1, - sym_attribute, - [49929] = 3, + ACTIONS(4255), 1, + anon_sym_LPAREN2, + [51970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(1813), 1, + STATE(1826), 1, sym_argument_list, - [49939] = 2, + [51980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4237), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [49947] = 3, - ACTIONS(3), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1453), 1, + sym_compound_statement, + [51990] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1622), 1, - sym_parenthesized_expression, - [49957] = 3, + ACTIONS(4257), 1, + aux_sym_preproc_include_token2, + ACTIONS(4259), 1, + sym_preproc_arg, + [52000] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(281), 1, + STATE(273), 1, sym_compound_statement, - [49967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [49975] = 3, + [52010] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1410), 1, + STATE(1406), 1, sym_compound_statement, - [49985] = 2, + [52020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [49993] = 2, + ACTIONS(4261), 1, + sym_identifier, + ACTIONS(4263), 1, + anon_sym_LPAREN2, + [52030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50001] = 2, + ACTIONS(2485), 1, + anon_sym_LPAREN2, + STATE(1359), 1, + sym_argument_list, + [52040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [50009] = 3, + ACTIONS(4245), 1, + anon_sym_LPAREN2, + STATE(1637), 1, + sym_parenthesized_expression, + [52050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1433), 1, - sym_compound_statement, - [50019] = 3, - ACTIONS(3299), 1, + ACTIONS(4245), 1, + anon_sym_LPAREN2, + STATE(1644), 1, + sym_parenthesized_expression, + [52060] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4241), 1, + ACTIONS(4265), 1, aux_sym_preproc_include_token2, - ACTIONS(4243), 1, + ACTIONS(4267), 1, sym_preproc_arg, - [50029] = 3, + [52070] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4245), 1, - sym_identifier, - ACTIONS(4247), 1, - anon_sym_RPAREN, - [50039] = 2, + anon_sym_LPAREN2, + STATE(1666), 1, + sym_parenthesized_expression, + [52080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [50047] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1435), 1, + sym_compound_statement, + [52090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, - sym_identifier, - STATE(1563), 1, - sym_enumerator, - [50057] = 3, + ACTIONS(4245), 1, + anon_sym_LPAREN2, + STATE(1632), 1, + sym_parenthesized_expression, + [52100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4243), 1, anon_sym_LPAREN2, - STATE(1603), 1, + STATE(451), 1, sym_parenthesized_expression, - [50067] = 3, + [52110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 1, - sym_identifier, - ACTIONS(4253), 1, - anon_sym_LPAREN2, - [50077] = 3, + ACTIONS(4269), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [52118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - STATE(258), 1, + STATE(186), 1, sym_compound_statement, - [50087] = 2, + [52128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50095] = 2, + ACTIONS(4243), 1, + anon_sym_LPAREN2, + STATE(442), 1, + sym_parenthesized_expression, + [52138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50103] = 3, + ACTIONS(4241), 1, + sym_identifier, + STATE(1598), 1, + sym_attribute, + [52148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + STATE(115), 1, + sym_compound_statement, + [52158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(1614), 1, + STATE(1604), 1, sym_parenthesized_expression, - [50113] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [50121] = 3, + [52168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(431), 1, + STATE(1766), 1, sym_parenthesized_expression, - [50131] = 3, + [52178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4243), 1, anon_sym_LPAREN2, STATE(415), 1, sym_parenthesized_expression, - [50141] = 3, + [52188] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1445), 1, + STATE(1462), 1, sym_compound_statement, - [50151] = 3, - ACTIONS(3299), 1, + [52198] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(4245), 1, + anon_sym_LPAREN2, + STATE(1753), 1, + sym_parenthesized_expression, + [52208] = 3, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4271), 1, aux_sym_preproc_include_token2, - ACTIONS(4261), 1, + ACTIONS(4273), 1, sym_preproc_arg, - [50161] = 3, + [52218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - sym_identifier, - STATE(1465), 1, - sym_attribute, - [50171] = 3, + ACTIONS(4275), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4243), 1, anon_sym_LPAREN2, - STATE(1625), 1, + STATE(447), 1, sym_parenthesized_expression, - [50181] = 3, + [52236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(412), 1, + STATE(1571), 1, sym_parenthesized_expression, - [50191] = 2, - ACTIONS(3299), 1, + [52246] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [50199] = 2, + ACTIONS(4243), 1, + anon_sym_LPAREN2, + STATE(445), 1, + sym_parenthesized_expression, + [52256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50207] = 3, + ACTIONS(4245), 1, + anon_sym_LPAREN2, + STATE(1600), 1, + sym_parenthesized_expression, + [52266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(108), 1, - sym_compound_statement, - [50217] = 3, + ACTIONS(4243), 1, + anon_sym_LPAREN2, + STATE(429), 1, + sym_parenthesized_expression, + [52276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(420), 1, + STATE(1690), 1, sym_parenthesized_expression, - [50227] = 3, + [52286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1407), 1, + sym_compound_statement, + [52296] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4277), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [52304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4243), 1, anon_sym_LPAREN2, - STATE(1594), 1, + STATE(426), 1, sym_parenthesized_expression, - [50237] = 3, + [52314] = 3, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4279), 1, + aux_sym_preproc_include_token2, + ACTIONS(4281), 1, + sym_preproc_arg, + [52324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(441), 1, + STATE(1574), 1, sym_parenthesized_expression, - [50247] = 3, + [52334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + STATE(124), 1, + sym_compound_statement, + [52344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, anon_sym_LPAREN2, - STATE(421), 1, + STATE(434), 1, sym_parenthesized_expression, - [50257] = 3, + [52354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, + ACTIONS(4241), 1, sym_identifier, - STATE(1487), 1, + STATE(1472), 1, sym_attribute, - [50267] = 3, - ACTIONS(3299), 1, + [52364] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4265), 1, - aux_sym_preproc_include_token2, - ACTIONS(4267), 1, - sym_preproc_arg, - [50277] = 3, + ACTIONS(4283), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(344), 1, + sym_compound_statement, + [52382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4095), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [52390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(416), 1, + STATE(1616), 1, sym_parenthesized_expression, - [50287] = 3, + [52400] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(250), 1, + STATE(330), 1, sym_compound_statement, - [50297] = 3, + [52410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1610), 1, - sym_parenthesized_expression, - [50307] = 3, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_compound_statement, + [52420] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1407), 1, + STATE(346), 1, sym_compound_statement, - [50317] = 3, + [52430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + sym_identifier, + ACTIONS(4287), 1, + anon_sym_RPAREN, + [52440] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, - STATE(111), 1, + STATE(98), 1, sym_compound_statement, - [50327] = 2, + [52450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4269), 2, + ACTIONS(3572), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [50335] = 3, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4271), 1, - aux_sym_preproc_include_token2, - ACTIONS(4273), 1, - sym_preproc_arg, - [50345] = 3, + anon_sym_SEMI, + [52458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(422), 1, + STATE(1602), 1, sym_parenthesized_expression, - [50355] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4275), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [50363] = 3, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4277), 1, - aux_sym_preproc_include_token2, - ACTIONS(4279), 1, - sym_preproc_arg, - [50373] = 2, - ACTIONS(3299), 1, + [52468] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [50381] = 3, - ACTIONS(3299), 1, + ACTIONS(3129), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [52476] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(4289), 1, aux_sym_preproc_include_token2, - ACTIONS(4285), 1, + ACTIONS(4291), 1, sym_preproc_arg, - [50391] = 3, + [52486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(244), 1, - sym_compound_statement, - [50401] = 3, - ACTIONS(3299), 1, + ACTIONS(4245), 1, + anon_sym_LPAREN2, + STATE(1733), 1, + sym_parenthesized_expression, + [52496] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, - aux_sym_preproc_include_token2, - ACTIONS(4289), 1, - sym_preproc_arg, - [50411] = 3, - ACTIONS(3299), 1, + ACTIONS(3099), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [52504] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 1, - aux_sym_preproc_include_token2, - ACTIONS(4293), 1, - sym_preproc_arg, - [50421] = 3, - ACTIONS(3299), 1, + ACTIONS(4293), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [52512] = 3, + ACTIONS(3319), 1, sym_comment, ACTIONS(4295), 1, aux_sym_preproc_include_token2, ACTIONS(4297), 1, sym_preproc_arg, - [50431] = 3, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4299), 1, - aux_sym_preproc_include_token2, - ACTIONS(4301), 1, - sym_preproc_arg, - [50441] = 3, + [52522] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1447), 1, + STATE(240), 1, sym_compound_statement, - [50451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1746), 1, - sym_parenthesized_expression, - [50461] = 3, - ACTIONS(3299), 1, + [52532] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4303), 1, + ACTIONS(4299), 1, aux_sym_preproc_include_token2, - ACTIONS(4305), 1, + ACTIONS(4301), 1, sym_preproc_arg, - [50471] = 3, + [52542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1548), 1, - sym_parenthesized_expression, - [50481] = 3, + ACTIONS(4303), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [52550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(305), 1, + STATE(346), 1, sym_compound_statement, - [50491] = 3, + [52560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(338), 1, + STATE(1458), 1, sym_compound_statement, - [50501] = 3, - ACTIONS(3299), 1, + [52578] = 2, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4307), 1, - aux_sym_preproc_include_token2, - ACTIONS(4309), 1, - sym_preproc_arg, - [50511] = 3, + ACTIONS(4305), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [52586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(3137), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(425), 1, sym_parenthesized_expression, - [50521] = 3, + [52604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4245), 1, anon_sym_LPAREN2, - STATE(1720), 1, + STATE(1597), 1, sym_parenthesized_expression, - [50531] = 3, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4311), 1, - aux_sym_preproc_include_token2, - ACTIONS(4313), 1, - sym_preproc_arg, - [50541] = 3, + [52614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym_compound_statement, - [50551] = 3, + ACTIONS(4243), 1, + anon_sym_LPAREN2, + STATE(428), 1, + sym_parenthesized_expression, + [52624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(121), 1, - sym_compound_statement, - [50561] = 3, + ACTIONS(3133), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, + ACTIONS(4241), 1, sym_identifier, - STATE(1508), 1, + STATE(1540), 1, sym_attribute, - [50571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1542), 1, - sym_parenthesized_expression, - [50581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - STATE(435), 1, - sym_parenthesized_expression, - [50591] = 3, + [52642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_compound_statement, - [50601] = 3, - ACTIONS(3299), 1, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [52650] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4315), 1, + ACTIONS(4309), 1, aux_sym_preproc_include_token2, - ACTIONS(4317), 1, + ACTIONS(4311), 1, sym_preproc_arg, - [50611] = 3, - ACTIONS(3), 1, + [52660] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(170), 1, - sym_compound_statement, - [50621] = 2, + ACTIONS(4313), 1, + aux_sym_preproc_include_token2, + ACTIONS(4315), 1, + sym_preproc_arg, + [52670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4317), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50629] = 2, + [52678] = 3, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4320), 1, + aux_sym_preproc_include_token2, + ACTIONS(4322), 1, + sym_preproc_arg, + [52688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 2, + ACTIONS(3109), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50637] = 3, + [52696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(731), 1, anon_sym_LBRACE, - STATE(1402), 1, + STATE(326), 1, sym_compound_statement, - [50647] = 3, + [52706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(200), 1, - sym_compound_statement, - [50657] = 3, - ACTIONS(3299), 1, + ACTIONS(4178), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52714] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4322), 1, - aux_sym_preproc_include_token2, ACTIONS(4324), 1, + aux_sym_preproc_include_token2, + ACTIONS(4326), 1, sym_preproc_arg, - [50667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_compound_statement, - [50677] = 3, - ACTIONS(3299), 1, + [52724] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4326), 1, - aux_sym_preproc_include_token2, ACTIONS(4328), 1, + aux_sym_preproc_include_token2, + ACTIONS(4330), 1, sym_preproc_arg, - [50687] = 3, - ACTIONS(3299), 1, + [52734] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4330), 1, - aux_sym_preproc_include_token2, ACTIONS(4332), 1, + aux_sym_preproc_include_token2, + ACTIONS(4334), 1, sym_preproc_arg, - [50697] = 3, + [52744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(731), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_compound_statement, + [52754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(731), 1, anon_sym_LBRACE, STATE(271), 1, sym_compound_statement, - [50707] = 3, - ACTIONS(3299), 1, + [52764] = 3, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4334), 1, - aux_sym_preproc_include_token2, ACTIONS(4336), 1, + aux_sym_preproc_include_token2, + ACTIONS(4338), 1, sym_preproc_arg, - [50717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1686), 1, - sym_parenthesized_expression, - [50727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50735] = 3, + [52774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - STATE(411), 1, - sym_parenthesized_expression, - [50745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4338), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [50753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(1586), 1, - sym_parenthesized_expression, - [50763] = 3, + ACTIONS(3890), 1, + sym_identifier, + STATE(1617), 1, + sym_enumerator, + [52784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - STATE(429), 1, - sym_parenthesized_expression, - [50773] = 2, - ACTIONS(3), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(161), 1, + sym_compound_statement, + [52794] = 3, + ACTIONS(3319), 1, sym_comment, ACTIONS(4340), 1, - anon_sym_RPAREN, - [50780] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4342), 1, aux_sym_preproc_include_token2, - [50787] = 2, - ACTIONS(3), 1, + ACTIONS(4342), 1, + sym_preproc_arg, + [52804] = 3, + ACTIONS(3319), 1, sym_comment, ACTIONS(4344), 1, - aux_sym_preproc_if_token2, - [50794] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_preproc_include_token2, ACTIONS(4346), 1, - aux_sym_preproc_if_token2, - [50801] = 2, + sym_preproc_arg, + [52814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, - aux_sym_preproc_if_token2, - [50808] = 2, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(177), 1, + sym_compound_statement, + [52824] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(324), 1, + sym_compound_statement, + [52834] = 3, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4348), 1, + aux_sym_preproc_include_token2, ACTIONS(4350), 1, - anon_sym_RPAREN, - [50815] = 2, - ACTIONS(3299), 1, + sym_preproc_arg, + [52844] = 3, + ACTIONS(3319), 1, sym_comment, ACTIONS(4352), 1, aux_sym_preproc_include_token2, - [50822] = 2, + ACTIONS(4354), 1, + sym_preproc_arg, + [52854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 1, - aux_sym_preproc_if_token2, - [50829] = 2, + ACTIONS(4152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4356), 1, - ts_builtin_sym_end, - [50836] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [52869] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4358), 1, - sym_identifier, - [50843] = 2, + aux_sym_preproc_include_token2, + [52876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4360), 1, - anon_sym_SEMI, - [50850] = 2, - ACTIONS(3), 1, + sym_identifier, + [52883] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4362), 1, - anon_sym_SEMI, - [50857] = 2, + aux_sym_preproc_include_token2, + [52890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4364), 1, aux_sym_preproc_if_token2, - [50864] = 2, + [52897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4366), 1, - anon_sym_SEMI, - [50871] = 2, + anon_sym_RBRACK, + [52904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 1, - anon_sym_SEMI, - [50878] = 2, + ACTIONS(3103), 1, + anon_sym_RPAREN, + [52911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - aux_sym_preproc_if_token2, - [50885] = 2, + ACTIONS(3115), 1, + anon_sym_RPAREN, + [52918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 1, - anon_sym_SEMI, - [50892] = 2, + ACTIONS(3111), 1, + anon_sym_RPAREN, + [52925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 1, - anon_sym_COLON, - [50899] = 2, + ACTIONS(4368), 1, + aux_sym_preproc_if_token2, + [52932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, - anon_sym_RBRACE, - [50906] = 2, - ACTIONS(3), 1, + ACTIONS(4370), 1, + aux_sym_preproc_if_token2, + [52939] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4372), 1, - anon_sym_SEMI, - [50913] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4374), 1, aux_sym_preproc_include_token2, - [50920] = 2, + [52946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, - anon_sym_SEMI, - [50927] = 2, + ACTIONS(4374), 1, + aux_sym_preproc_if_token2, + [52953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4376), 1, - anon_sym_SEMI, - [50934] = 2, - ACTIONS(3299), 1, + aux_sym_preproc_if_token2, + [52960] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4378), 1, - aux_sym_preproc_include_token2, - [50941] = 2, + aux_sym_preproc_if_token2, + [52967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4380), 1, - anon_sym_SEMI, - [50948] = 2, - ACTIONS(3299), 1, + sym_primitive_type, + [52974] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4382), 1, - aux_sym_preproc_include_token2, - [50955] = 2, - ACTIONS(3299), 1, + aux_sym_preproc_if_token2, + [52981] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4384), 1, - aux_sym_preproc_include_token2, - [50962] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4072), 1, - aux_sym_preproc_include_token2, - [50969] = 2, + anon_sym_SEMI, + [52988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4386), 1, - anon_sym_while, - [50976] = 2, + aux_sym_preproc_if_token2, + [52995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4388), 1, - anon_sym_SEMI, - [50983] = 2, - ACTIONS(3299), 1, + aux_sym_preproc_if_token2, + [53002] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4390), 1, - aux_sym_preproc_include_token2, - [50990] = 2, + anon_sym_RPAREN, + [53009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4392), 1, - anon_sym_SEMI, - [50997] = 2, - ACTIONS(3299), 1, + anon_sym_COLON, + [53016] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4394), 1, - aux_sym_preproc_include_token2, - [51004] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [53023] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4396), 1, - anon_sym_SEMI, - [51011] = 2, - ACTIONS(3299), 1, + aux_sym_preproc_include_token2, + [53030] = 2, + ACTIONS(3319), 1, sym_comment, - ACTIONS(4398), 1, + ACTIONS(3451), 1, aux_sym_preproc_include_token2, - [51018] = 2, + [53037] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4398), 1, + anon_sym_SEMI, + [53044] = 2, + ACTIONS(3319), 1, + sym_comment, ACTIONS(4400), 1, - anon_sym_COLON, - [51025] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [53051] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4402), 1, - anon_sym_SQUOTE, - [51032] = 2, - ACTIONS(3299), 1, + aux_sym_preproc_include_token2, + [53058] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4404), 1, aux_sym_preproc_include_token2, - [51039] = 2, - ACTIONS(3299), 1, + [53065] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4406), 1, - aux_sym_preproc_include_token2, - [51046] = 2, + anon_sym_SEMI, + [53072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4408), 1, - aux_sym_preproc_if_token2, - [51053] = 2, - ACTIONS(3299), 1, + anon_sym_SEMI, + [53079] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4410), 1, - aux_sym_preproc_include_token2, - [51060] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [53086] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4412), 1, - aux_sym_preproc_if_token2, - [51067] = 2, + aux_sym_preproc_include_token2, + [53093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4414), 1, - aux_sym_preproc_if_token2, - [51074] = 2, - ACTIONS(3299), 1, + anon_sym_SEMI, + [53100] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4416), 1, aux_sym_preproc_include_token2, - [51081] = 2, - ACTIONS(3299), 1, + [53107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3119), 1, + anon_sym_SEMI, + [53114] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4418), 1, aux_sym_preproc_include_token2, - [51088] = 2, + [53121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4420), 1, anon_sym_SEMI, - [51095] = 2, - ACTIONS(3299), 1, + [53128] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4422), 1, - aux_sym_preproc_include_token2, - [51102] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [53135] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4424), 1, - aux_sym_preproc_if_token2, - [51109] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [53142] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4426), 1, - sym_identifier, - [51116] = 2, + aux_sym_preproc_include_token2, + [53149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, - sym_identifier, - [51123] = 2, - ACTIONS(3), 1, + ACTIONS(4428), 1, + anon_sym_SEMI, + [53156] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4430), 1, - aux_sym_preproc_if_token2, - [51130] = 2, + aux_sym_preproc_include_token2, + [53163] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3123), 1, + anon_sym_SEMI, + [53170] = 2, + ACTIONS(3319), 1, + sym_comment, ACTIONS(4432), 1, - aux_sym_preproc_if_token2, - [51137] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [53177] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4434), 1, - aux_sym_preproc_if_token2, - [51144] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [53184] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4436), 1, - anon_sym_SEMI, - [51151] = 2, + aux_sym_preproc_include_token2, + [53191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4438), 1, - aux_sym_preproc_if_token2, - [51158] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [53198] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4440), 1, - anon_sym_SEMI, - [51165] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [53205] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4442), 1, - anon_sym_SEMI, - [51172] = 2, + aux_sym_preproc_include_token2, + [53212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4444), 1, sym_identifier, - [51179] = 2, + [53219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4446), 1, - anon_sym_SEMI, - [51186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3100), 1, - anon_sym_RPAREN, - [51193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_RPAREN, - [51200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3094), 1, - anon_sym_SEMI, - [51207] = 2, + sym_identifier, + [53226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4448), 1, anon_sym_RPAREN, - [51214] = 2, + [53233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4450), 1, - anon_sym_COLON, - [51221] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [53240] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4452), 1, - sym_identifier, - [51228] = 2, + aux_sym_preproc_include_token2, + [53247] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4454), 1, - anon_sym_STAR, - [51235] = 2, + anon_sym_SEMI, + [53254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4456), 1, - anon_sym_LPAREN2, - [51242] = 2, + anon_sym_SQUOTE, + [53261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4458), 1, aux_sym_preproc_if_token2, - [51249] = 2, + [53268] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4182), 1, + aux_sym_preproc_include_token2, + [53275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4460), 1, - aux_sym_preproc_if_token2, - [51256] = 2, + sym_identifier, + [53282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_SEMI, - [51263] = 2, - ACTIONS(3299), 1, - sym_comment, ACTIONS(4462), 1, - aux_sym_preproc_include_token2, - [51270] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3383), 1, - aux_sym_preproc_include_token2, - [51277] = 2, + aux_sym_preproc_if_token2, + [53289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4464), 1, - aux_sym_preproc_if_token2, - [51284] = 2, + anon_sym_RPAREN, + [53296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4466), 1, - anon_sym_SEMI, - [51291] = 2, + anon_sym_LPAREN2, + [53303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4468), 1, sym_identifier, - [51298] = 2, - ACTIONS(3299), 1, + [53310] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4470), 1, - aux_sym_preproc_include_token2, - [51305] = 2, + anon_sym_COLON, + [53317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4472), 1, - sym_identifier, - [51312] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 1, - anon_sym_SEMI, - [51319] = 2, + anon_sym_RPAREN, + [53324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(3127), 1, anon_sym_SEMI, - [51326] = 2, + [53331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - anon_sym_SEMI, - [51333] = 2, + ACTIONS(3157), 1, + anon_sym_RPAREN, + [53338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 1, - sym_identifier, - [51340] = 2, + ACTIONS(3159), 1, + anon_sym_RPAREN, + [53345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 1, + ACTIONS(4474), 1, anon_sym_SEMI, - [51347] = 2, + [53352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 1, + ACTIONS(4476), 1, anon_sym_SEMI, - [51354] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3397), 1, - aux_sym_preproc_include_token2, - [51361] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3343), 1, - aux_sym_preproc_include_token2, - [51368] = 2, + [53359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 1, - sym_identifier, - [51375] = 2, + ACTIONS(4478), 1, + anon_sym_STAR, + [53366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_SEMI, - [51382] = 2, + ACTIONS(4480), 1, + aux_sym_preproc_if_token2, + [53373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4482), 1, - anon_sym_SEMI, - [51389] = 2, + anon_sym_RPAREN, + [53380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4484), 1, - anon_sym_SEMI, - [51396] = 2, + aux_sym_preproc_if_token2, + [53387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4486), 1, - sym_identifier, - [51403] = 2, - ACTIONS(3299), 1, + anon_sym_SEMI, + [53394] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4488), 1, - aux_sym_preproc_include_token2, - [51410] = 2, + sym_identifier, + [53401] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4490), 1, - anon_sym_RPAREN, - [51417] = 2, + anon_sym_COLON, + [53408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4492), 1, - anon_sym_RPAREN, - [51424] = 2, + anon_sym_SEMI, + [53415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4494), 1, - anon_sym_RPAREN, - [51431] = 2, + sym_identifier, + [53422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 1, - anon_sym_RPAREN, - [51438] = 2, - ACTIONS(3299), 1, + ACTIONS(3083), 1, + anon_sym_RBRACE, + [53429] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4496), 1, - aux_sym_preproc_include_token2, - [51445] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_preproc_include_token2, - [51452] = 2, + anon_sym_SEMI, + [53436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4498), 1, - anon_sym_STAR, - [51459] = 2, + aux_sym_preproc_if_token2, + [53443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4500), 1, aux_sym_preproc_if_token2, - [51466] = 2, + [53450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4502), 1, - aux_sym_preproc_if_token2, - [51473] = 2, - ACTIONS(3299), 1, + anon_sym_SEMI, + [53457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, + anon_sym_RPAREN, + [53464] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4504), 1, - aux_sym_preproc_include_token2, - [51480] = 2, + aux_sym_preproc_if_token2, + [53471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4506), 1, - anon_sym_SEMI, - [51487] = 2, + sym_identifier, + [53478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4508), 1, - anon_sym_SEMI, - [51494] = 2, + aux_sym_preproc_if_token2, + [53485] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3443), 1, + aux_sym_preproc_include_token2, + [53492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4510), 1, - sym_identifier, - [51501] = 2, + aux_sym_preproc_if_token2, + [53499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4512), 1, - anon_sym_COLON, - [51508] = 2, + sym_identifier, + [53506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(3113), 1, anon_sym_SEMI, - [51515] = 2, + [53513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_RPAREN, + [53520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4516), 1, - aux_sym_preproc_if_token2, - [51522] = 2, + anon_sym_RPAREN, + [53527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4518), 1, - aux_sym_preproc_if_token2, - [51529] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4180), 1, - aux_sym_preproc_include_token2, - [51536] = 2, + anon_sym_RPAREN, + [53534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4520), 1, aux_sym_preproc_if_token2, - [51543] = 2, + [53541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4522), 1, anon_sym_SEMI, - [51550] = 2, + [53548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4524), 1, - aux_sym_preproc_if_token2, - [51557] = 2, + anon_sym_RPAREN, + [53555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4526), 1, aux_sym_preproc_if_token2, - [51564] = 2, - ACTIONS(3), 1, + [53562] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4528), 1, - anon_sym_SEMI, - [51571] = 2, + aux_sym_preproc_include_token2, + [53569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4530), 1, + sym_identifier, + [53576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3141), 1, anon_sym_SEMI, - [51578] = 2, + [53583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 1, + anon_sym_SEMI, + [53590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4532), 1, - aux_sym_preproc_if_token2, - [51585] = 2, + anon_sym_SEMI, + [53597] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4144), 1, + aux_sym_preproc_include_token2, + [53604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, - aux_sym_preproc_if_token2, - [51592] = 2, + ACTIONS(3716), 1, + anon_sym_STAR, + [53611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 1, - anon_sym_RPAREN, - [51599] = 2, + ACTIONS(4534), 1, + anon_sym_SEMI, + [53618] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4536), 1, - sym_identifier, - [51606] = 2, + anon_sym_RBRACK, + [53625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4538), 1, - sym_identifier, - [51613] = 2, - ACTIONS(2310), 1, - aux_sym_preproc_include_token2, - ACTIONS(3299), 1, - sym_comment, - [51620] = 2, + aux_sym_preproc_if_token2, + [53632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 1, - anon_sym_RPAREN, - [51627] = 2, - ACTIONS(3299), 1, - sym_comment, ACTIONS(4540), 1, - aux_sym_preproc_include_token2, - [51634] = 2, + anon_sym_RPAREN, + [53639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4542), 1, - sym_primitive_type, - [51641] = 2, + aux_sym_preproc_if_token2, + [53646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4544), 1, - anon_sym_RPAREN, - [51648] = 2, + aux_sym_preproc_if_token2, + [53653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4546), 1, aux_sym_preproc_if_token2, - [51655] = 2, + [53660] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4548), 1, - sym_identifier, - [51662] = 2, + anon_sym_STAR, + [53667] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4550), 1, - sym_identifier, - [51669] = 2, + anon_sym_RPAREN, + [53674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4552), 1, - aux_sym_preproc_if_token2, - [51676] = 2, + anon_sym_SEMI, + [53681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4554), 1, - aux_sym_preproc_if_token2, - [51683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3122), 1, - anon_sym_RPAREN, - [51690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3116), 1, - anon_sym_RPAREN, - [51697] = 2, + anon_sym_SEMI, + [53688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4556), 1, - anon_sym_RBRACK, - [51704] = 2, + aux_sym_preproc_if_token2, + [53695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4558), 1, aux_sym_preproc_if_token2, - [51711] = 2, - ACTIONS(3299), 1, + [53702] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4560), 1, - aux_sym_preproc_include_token2, - [51718] = 2, + sym_identifier, + [53709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4562), 1, - anon_sym_LPAREN2, - [51725] = 2, + sym_identifier, + [53716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4564), 1, - aux_sym_preproc_if_token2, - [51732] = 2, + anon_sym_SEMI, + [53723] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4566), 1, - sym_identifier, - [51739] = 2, + anon_sym_LPAREN2, + [53730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_SEMI, + [53737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4568), 1, - sym_identifier, - [51746] = 2, + anon_sym_SEMI, + [53744] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4570), 1, - anon_sym_RPAREN, - [51753] = 2, + anon_sym_LPAREN2, + [53751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4572), 1, anon_sym_RPAREN, - [51760] = 2, + [53758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4574), 1, - sym_identifier, - [51767] = 2, + aux_sym_preproc_if_token2, + [53765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4576), 1, - anon_sym_SEMI, - [51774] = 2, + sym_identifier, + [53772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4578), 1, - anon_sym_SQUOTE, - [51781] = 2, + aux_sym_preproc_if_token2, + [53779] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4580), 1, - anon_sym_LPAREN2, - [51788] = 2, + anon_sym_SEMI, + [53786] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3413), 1, + aux_sym_preproc_include_token2, + [53793] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4582), 1, - anon_sym_SEMI, - [51795] = 2, + anon_sym_SQUOTE, + [53800] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4584), 1, - sym_identifier, - [51802] = 2, + anon_sym_SEMI, + [53807] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4586), 1, - sym_identifier, - [51809] = 2, + aux_sym_preproc_if_token2, + [53814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 1, + ACTIONS(3105), 1, anon_sym_SEMI, - [51816] = 2, - ACTIONS(3299), 1, + [53821] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4588), 1, - aux_sym_preproc_include_token2, - [51823] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(3401), 1, - aux_sym_preproc_include_token2, - [51830] = 2, + aux_sym_preproc_if_token2, + [53828] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4590), 1, - anon_sym_LPAREN2, - [51837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3082), 1, - anon_sym_SEMI, - [51844] = 2, + anon_sym_STAR, + [53835] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4592), 1, - sym_identifier, - [51851] = 2, + anon_sym_RPAREN, + [53842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4594), 1, - anon_sym_LPAREN2, - [51858] = 2, - ACTIONS(3), 1, + sym_identifier, + [53849] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4596), 1, - anon_sym_SEMI, - [51865] = 2, + aux_sym_preproc_include_token2, + [53856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4598), 1, anon_sym_RPAREN, - [51872] = 2, - ACTIONS(3299), 1, + [53863] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4600), 1, - aux_sym_preproc_include_token2, - [51879] = 2, + anon_sym_COLON, + [53870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4602), 1, - anon_sym_STAR, - [51886] = 2, + sym_identifier, + [53877] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4604), 1, - aux_sym_preproc_if_token2, - [51893] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4040), 1, - aux_sym_preproc_include_token2, - [51900] = 2, + anon_sym_COMMA, + [53884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4606), 1, - sym_identifier, - [51907] = 2, + anon_sym_RPAREN, + [53891] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4608), 1, anon_sym_RPAREN, - [51914] = 2, + [53898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4610), 1, - anon_sym_RPAREN, - [51921] = 2, + sym_identifier, + [53905] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4612), 1, + sym_identifier, + [53912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3143), 1, anon_sym_SEMI, - [51928] = 2, + [53919] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4614), 1, - anon_sym_SEMI, - [51935] = 2, + anon_sym_LPAREN2, + [53926] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4616), 1, - anon_sym_COLON, - [51942] = 2, + sym_identifier, + [53933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4618), 1, - anon_sym_STAR, - [51949] = 2, - ACTIONS(2349), 1, - aux_sym_preproc_include_token2, - ACTIONS(3299), 1, - sym_comment, - [51956] = 2, + anon_sym_RPAREN, + [53940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4620), 1, - sym_identifier, - [51963] = 2, + anon_sym_RPAREN, + [53947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4622), 1, sym_identifier, - [51970] = 2, + [53954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4624), 1, aux_sym_preproc_if_token2, - [51977] = 2, + [53961] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4626), 1, - anon_sym_COLON, - [51984] = 2, + anon_sym_SQUOTE, + [53968] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4628), 1, sym_identifier, - [51991] = 2, + [53975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4630), 1, - sym_identifier, - [51998] = 2, - ACTIONS(3), 1, + sym_primitive_type, + [53982] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4632), 1, - anon_sym_SEMI, - [52005] = 2, + aux_sym_preproc_include_token2, + [53989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4634), 1, - anon_sym_SEMI, - [52012] = 2, + anon_sym_COLON, + [53996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4636), 1, - anon_sym_COMMA, - [52019] = 2, - ACTIONS(3299), 1, + anon_sym_SEMI, + [54003] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4638), 1, + sym_identifier, + [54010] = 2, + ACTIONS(2386), 1, aux_sym_preproc_include_token2, - [52026] = 2, - ACTIONS(3), 1, + ACTIONS(3319), 1, sym_comment, - ACTIONS(3088), 1, - anon_sym_RPAREN, - [52033] = 2, + [54017] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4640), 1, anon_sym_RPAREN, - [52040] = 2, + [54024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4076), 1, + anon_sym_RBRACE, + [54031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4642), 1, - sym_identifier, - [52047] = 2, + anon_sym_SEMI, + [54038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4644), 1, anon_sym_RPAREN, - [52054] = 2, + [54045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_RBRACE, - [52061] = 2, + ACTIONS(3155), 1, + anon_sym_SEMI, + [54052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4646), 1, - anon_sym_RPAREN, - [52068] = 2, + aux_sym_preproc_if_token2, + [54059] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4648), 1, sym_identifier, - [52075] = 2, + [54066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4650), 1, - anon_sym_SEMI, - [52082] = 2, + sym_identifier, + [54073] = 2, + ACTIONS(2337), 1, + aux_sym_preproc_include_token2, + ACTIONS(3319), 1, + sym_comment, + [54080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4652), 1, - aux_sym_preproc_if_token2, - [52089] = 2, + anon_sym_COLON, + [54087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4654), 1, sym_identifier, - [52096] = 2, + [54094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4656), 1, sym_identifier, - [52103] = 2, + [54101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4658), 1, - sym_identifier, - [52110] = 2, + anon_sym_RPAREN, + [54108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, + anon_sym_STAR, + [54115] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4660), 1, aux_sym_preproc_if_token2, - [52117] = 2, + [54122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(3135), 1, anon_sym_SEMI, - [52124] = 2, + [54129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4662), 1, + sym_identifier, + [54136] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4664), 1, - anon_sym_LPAREN2, - [52131] = 2, + sym_identifier, + [54143] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4666), 1, - anon_sym_RPAREN, - [52138] = 2, + anon_sym_SEMI, + [54150] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4668), 1, - anon_sym_LPAREN2, - [52145] = 2, + anon_sym_SEMI, + [54157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4670), 1, - aux_sym_preproc_if_token2, - [52152] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [54164] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4672), 1, - anon_sym_COLON, - [52159] = 2, + aux_sym_preproc_include_token2, + [54171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4674), 1, - anon_sym_RPAREN, - [52166] = 2, + sym_identifier, + [54178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4676), 1, - anon_sym_SEMI, - [52173] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [54185] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4678), 1, - anon_sym_RPAREN, - [52180] = 2, + aux_sym_preproc_include_token2, + [54192] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4680), 1, - sym_primitive_type, - [52187] = 2, + sym_identifier, + [54199] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4682), 1, - aux_sym_preproc_if_token2, - [52194] = 2, + sym_identifier, + [54206] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4684), 1, - anon_sym_SEMI, - [52201] = 2, + sym_identifier, + [54213] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(3363), 1, + aux_sym_preproc_include_token2, + [54220] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4686), 1, - anon_sym_while, - [52208] = 2, + sym_identifier, + [54227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, - aux_sym_preproc_if_token2, - [52215] = 2, + ACTIONS(3153), 1, + anon_sym_SEMI, + [54234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 1, - sym_identifier, - [52222] = 2, + ACTIONS(3696), 1, + anon_sym_STAR, + [54241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 1, + anon_sym_LPAREN2, + [54248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(4690), 1, anon_sym_SEMI, - [52229] = 2, + [54255] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4210), 1, + aux_sym_preproc_include_token2, + [54262] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4692), 1, - anon_sym_RPAREN, - [52236] = 2, + sym_identifier, + [54269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(4694), 1, anon_sym_SEMI, - [52243] = 2, + [54276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, + ACTIONS(4696), 1, anon_sym_RPAREN, - [52250] = 2, + [54283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, - anon_sym_LPAREN2, - [52257] = 2, + ACTIONS(3163), 1, + anon_sym_SEMI, + [54290] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4698), 1, - sym_identifier, - [52264] = 2, + anon_sym_while, + [54297] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4208), 1, + aux_sym_preproc_include_token2, + [54304] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4700), 1, - anon_sym_LPAREN2, - [52271] = 2, - ACTIONS(3), 1, + anon_sym_while, + [54311] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4702), 1, - anon_sym_SEMI, - [52278] = 2, + aux_sym_preproc_include_token2, + [54318] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4704), 1, - anon_sym_COLON, - [52285] = 2, + anon_sym_SEMI, + [54325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4706), 1, - anon_sym_while, - [52292] = 2, + anon_sym_SEMI, + [54332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_SEMI, + [54339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4708), 1, - aux_sym_preproc_if_token2, - [52299] = 2, + anon_sym_SEMI, + [54346] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4710), 1, - anon_sym_RPAREN, - [52306] = 2, + anon_sym_SEMI, + [54353] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4712), 1, - anon_sym_RBRACK, - [52313] = 2, + sym_identifier, + [54360] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4714), 1, - anon_sym_RPAREN, - [52320] = 2, + aux_sym_preproc_if_token2, + [54367] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4716), 1, - sym_identifier, - [52327] = 2, + anon_sym_LPAREN2, + [54374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, - anon_sym_LPAREN2, - [52334] = 2, + ACTIONS(3125), 1, + anon_sym_RPAREN, + [54381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, - anon_sym_SEMI, - [52341] = 2, + ACTIONS(4718), 1, + anon_sym_RPAREN, + [54388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4720), 1, anon_sym_while, - [52348] = 2, + [54395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 1, - anon_sym_SEMI, - [52355] = 2, + ACTIONS(3151), 1, + anon_sym_RPAREN, + [54402] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4722), 1, + aux_sym_preproc_include_token2, + [54409] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4724), 1, - anon_sym_LPAREN2, - [52362] = 2, + anon_sym_COLON, + [54416] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4726), 1, - anon_sym_SEMI, - [52369] = 2, + anon_sym_RPAREN, + [54423] = 2, + ACTIONS(3319), 1, + sym_comment, + ACTIONS(4048), 1, + aux_sym_preproc_include_token2, + [54430] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4728), 1, - anon_sym_SQUOTE, - [52376] = 2, + ts_builtin_sym_end, + [54437] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4730), 1, - aux_sym_preproc_if_token2, - [52383] = 2, + anon_sym_RPAREN, + [54444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4732), 1, - aux_sym_preproc_if_token2, - [52390] = 2, + anon_sym_while, + [54451] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4734), 1, - anon_sym_RPAREN, - [52397] = 2, + anon_sym_LPAREN2, + [54458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4736), 1, - anon_sym_while, - [52404] = 2, + anon_sym_LPAREN2, + [54465] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4738), 1, anon_sym_LPAREN2, - [52411] = 2, - ACTIONS(3299), 1, + [54472] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4740), 1, - aux_sym_preproc_include_token2, - [52418] = 2, + sym_identifier, + [54479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4742), 1, anon_sym_SEMI, - [52425] = 2, - ACTIONS(3299), 1, + [54486] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4744), 1, - aux_sym_preproc_include_token2, - [52432] = 2, + anon_sym_SEMI, + [54493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4746), 1, anon_sym_LPAREN2, - [52439] = 2, - ACTIONS(3299), 1, - sym_comment, - ACTIONS(4136), 1, - aux_sym_preproc_include_token2, - [52446] = 2, + [54500] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4748), 1, - sym_identifier, - [52453] = 2, + anon_sym_while, + [54507] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4750), 1, - anon_sym_LPAREN2, - [52460] = 2, + aux_sym_preproc_if_token2, + [54514] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4752), 1, - aux_sym_preproc_if_token2, - [52467] = 2, + anon_sym_COLON, + [54521] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4754), 1, - anon_sym_RPAREN, - [52474] = 2, + aux_sym_preproc_if_token2, + [54528] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4756), 1, - anon_sym_LPAREN2, - [52481] = 2, + anon_sym_SEMI, + [54535] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4758), 1, - anon_sym_RPAREN, - [52488] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [54542] = 2, + ACTIONS(3319), 1, sym_comment, ACTIONS(4760), 1, + aux_sym_preproc_include_token2, + [54549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_LPAREN2, + [54556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 1, + anon_sym_LPAREN2, + [54563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 1, + aux_sym_preproc_if_token2, + [54570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 1, + anon_sym_LPAREN2, + [54577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4770), 1, + anon_sym_LPAREN2, + [54584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 1, + anon_sym_SEMI, + [54591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(540)] = 0, - [SMALL_STATE(541)] = 114, + [SMALL_STATE(541)] = 110, [SMALL_STATE(542)] = 224, [SMALL_STATE(543)] = 338, [SMALL_STATE(544)] = 449, @@ -113430,123 +115380,123 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(549)] = 989, [SMALL_STATE(550)] = 1097, [SMALL_STATE(551)] = 1205, - [SMALL_STATE(552)] = 1311, - [SMALL_STATE(553)] = 1419, - [SMALL_STATE(554)] = 1527, - [SMALL_STATE(555)] = 1635, - [SMALL_STATE(556)] = 1743, - [SMALL_STATE(557)] = 1851, - [SMALL_STATE(558)] = 1959, - [SMALL_STATE(559)] = 2067, + [SMALL_STATE(552)] = 1313, + [SMALL_STATE(553)] = 1421, + [SMALL_STATE(554)] = 1529, + [SMALL_STATE(555)] = 1637, + [SMALL_STATE(556)] = 1745, + [SMALL_STATE(557)] = 1853, + [SMALL_STATE(558)] = 1961, + [SMALL_STATE(559)] = 2069, [SMALL_STATE(560)] = 2175, [SMALL_STATE(561)] = 2283, [SMALL_STATE(562)] = 2391, [SMALL_STATE(563)] = 2499, [SMALL_STATE(564)] = 2607, [SMALL_STATE(565)] = 2715, - [SMALL_STATE(566)] = 2821, - [SMALL_STATE(567)] = 2929, + [SMALL_STATE(566)] = 2823, + [SMALL_STATE(567)] = 2931, [SMALL_STATE(568)] = 3037, [SMALL_STATE(569)] = 3145, [SMALL_STATE(570)] = 3253, - [SMALL_STATE(571)] = 3356, - [SMALL_STATE(572)] = 3459, + [SMALL_STATE(571)] = 3358, + [SMALL_STATE(572)] = 3461, [SMALL_STATE(573)] = 3564, [SMALL_STATE(574)] = 3669, - [SMALL_STATE(575)] = 3782, - [SMALL_STATE(576)] = 3885, - [SMALL_STATE(577)] = 3988, - [SMALL_STATE(578)] = 4091, - [SMALL_STATE(579)] = 4196, - [SMALL_STATE(580)] = 4301, - [SMALL_STATE(581)] = 4404, - [SMALL_STATE(582)] = 4509, + [SMALL_STATE(575)] = 3774, + [SMALL_STATE(576)] = 3887, + [SMALL_STATE(577)] = 3992, + [SMALL_STATE(578)] = 4097, + [SMALL_STATE(579)] = 4200, + [SMALL_STATE(580)] = 4305, + [SMALL_STATE(581)] = 4408, + [SMALL_STATE(582)] = 4511, [SMALL_STATE(583)] = 4614, - [SMALL_STATE(584)] = 4717, - [SMALL_STATE(585)] = 4820, - [SMALL_STATE(586)] = 4923, + [SMALL_STATE(584)] = 4719, + [SMALL_STATE(585)] = 4822, + [SMALL_STATE(586)] = 4925, [SMALL_STATE(587)] = 5028, [SMALL_STATE(588)] = 5131, [SMALL_STATE(589)] = 5231, [SMALL_STATE(590)] = 5333, - [SMALL_STATE(591)] = 5435, - [SMALL_STATE(592)] = 5537, - [SMALL_STATE(593)] = 5639, - [SMALL_STATE(594)] = 5741, - [SMALL_STATE(595)] = 5843, - [SMALL_STATE(596)] = 5945, - [SMALL_STATE(597)] = 6047, - [SMALL_STATE(598)] = 6149, - [SMALL_STATE(599)] = 6251, - [SMALL_STATE(600)] = 6353, - [SMALL_STATE(601)] = 6455, - [SMALL_STATE(602)] = 6557, - [SMALL_STATE(603)] = 6659, - [SMALL_STATE(604)] = 6759, - [SMALL_STATE(605)] = 6861, - [SMALL_STATE(606)] = 6963, - [SMALL_STATE(607)] = 7065, - [SMALL_STATE(608)] = 7167, - [SMALL_STATE(609)] = 7269, - [SMALL_STATE(610)] = 7371, - [SMALL_STATE(611)] = 7473, - [SMALL_STATE(612)] = 7575, - [SMALL_STATE(613)] = 7677, - [SMALL_STATE(614)] = 7779, - [SMALL_STATE(615)] = 7881, - [SMALL_STATE(616)] = 7983, - [SMALL_STATE(617)] = 8085, - [SMALL_STATE(618)] = 8187, - [SMALL_STATE(619)] = 8289, - [SMALL_STATE(620)] = 8389, - [SMALL_STATE(621)] = 8491, - [SMALL_STATE(622)] = 8591, - [SMALL_STATE(623)] = 8691, - [SMALL_STATE(624)] = 8791, - [SMALL_STATE(625)] = 8893, - [SMALL_STATE(626)] = 8993, - [SMALL_STATE(627)] = 9093, - [SMALL_STATE(628)] = 9195, - [SMALL_STATE(629)] = 9297, - [SMALL_STATE(630)] = 9399, - [SMALL_STATE(631)] = 9499, - [SMALL_STATE(632)] = 9599, - [SMALL_STATE(633)] = 9699, - [SMALL_STATE(634)] = 9799, - [SMALL_STATE(635)] = 9901, - [SMALL_STATE(636)] = 10001, - [SMALL_STATE(637)] = 10103, - [SMALL_STATE(638)] = 10203, - [SMALL_STATE(639)] = 10305, - [SMALL_STATE(640)] = 10405, - [SMALL_STATE(641)] = 10507, - [SMALL_STATE(642)] = 10609, - [SMALL_STATE(643)] = 10711, - [SMALL_STATE(644)] = 10813, - [SMALL_STATE(645)] = 10915, - [SMALL_STATE(646)] = 11017, - [SMALL_STATE(647)] = 11117, - [SMALL_STATE(648)] = 11219, - [SMALL_STATE(649)] = 11319, - [SMALL_STATE(650)] = 11419, - [SMALL_STATE(651)] = 11519, - [SMALL_STATE(652)] = 11621, - [SMALL_STATE(653)] = 11723, - [SMALL_STATE(654)] = 11823, - [SMALL_STATE(655)] = 11923, - [SMALL_STATE(656)] = 12023, - [SMALL_STATE(657)] = 12123, - [SMALL_STATE(658)] = 12223, - [SMALL_STATE(659)] = 12323, - [SMALL_STATE(660)] = 12425, - [SMALL_STATE(661)] = 12527, - [SMALL_STATE(662)] = 12627, - [SMALL_STATE(663)] = 12727, - [SMALL_STATE(664)] = 12827, - [SMALL_STATE(665)] = 12927, - [SMALL_STATE(666)] = 13029, - [SMALL_STATE(667)] = 13129, - [SMALL_STATE(668)] = 13229, + [SMALL_STATE(591)] = 5433, + [SMALL_STATE(592)] = 5533, + [SMALL_STATE(593)] = 5633, + [SMALL_STATE(594)] = 5735, + [SMALL_STATE(595)] = 5835, + [SMALL_STATE(596)] = 5937, + [SMALL_STATE(597)] = 6037, + [SMALL_STATE(598)] = 6139, + [SMALL_STATE(599)] = 6241, + [SMALL_STATE(600)] = 6341, + [SMALL_STATE(601)] = 6441, + [SMALL_STATE(602)] = 6541, + [SMALL_STATE(603)] = 6641, + [SMALL_STATE(604)] = 6741, + [SMALL_STATE(605)] = 6843, + [SMALL_STATE(606)] = 6943, + [SMALL_STATE(607)] = 7043, + [SMALL_STATE(608)] = 7143, + [SMALL_STATE(609)] = 7243, + [SMALL_STATE(610)] = 7343, + [SMALL_STATE(611)] = 7445, + [SMALL_STATE(612)] = 7547, + [SMALL_STATE(613)] = 7647, + [SMALL_STATE(614)] = 7747, + [SMALL_STATE(615)] = 7849, + [SMALL_STATE(616)] = 7949, + [SMALL_STATE(617)] = 8049, + [SMALL_STATE(618)] = 8151, + [SMALL_STATE(619)] = 8253, + [SMALL_STATE(620)] = 8355, + [SMALL_STATE(621)] = 8455, + [SMALL_STATE(622)] = 8557, + [SMALL_STATE(623)] = 8659, + [SMALL_STATE(624)] = 8759, + [SMALL_STATE(625)] = 8861, + [SMALL_STATE(626)] = 8961, + [SMALL_STATE(627)] = 9063, + [SMALL_STATE(628)] = 9165, + [SMALL_STATE(629)] = 9267, + [SMALL_STATE(630)] = 9369, + [SMALL_STATE(631)] = 9471, + [SMALL_STATE(632)] = 9573, + [SMALL_STATE(633)] = 9675, + [SMALL_STATE(634)] = 9777, + [SMALL_STATE(635)] = 9879, + [SMALL_STATE(636)] = 9979, + [SMALL_STATE(637)] = 10081, + [SMALL_STATE(638)] = 10183, + [SMALL_STATE(639)] = 10285, + [SMALL_STATE(640)] = 10387, + [SMALL_STATE(641)] = 10489, + [SMALL_STATE(642)] = 10591, + [SMALL_STATE(643)] = 10693, + [SMALL_STATE(644)] = 10795, + [SMALL_STATE(645)] = 10897, + [SMALL_STATE(646)] = 10999, + [SMALL_STATE(647)] = 11099, + [SMALL_STATE(648)] = 11199, + [SMALL_STATE(649)] = 11301, + [SMALL_STATE(650)] = 11401, + [SMALL_STATE(651)] = 11503, + [SMALL_STATE(652)] = 11603, + [SMALL_STATE(653)] = 11705, + [SMALL_STATE(654)] = 11805, + [SMALL_STATE(655)] = 11907, + [SMALL_STATE(656)] = 12007, + [SMALL_STATE(657)] = 12109, + [SMALL_STATE(658)] = 12211, + [SMALL_STATE(659)] = 12311, + [SMALL_STATE(660)] = 12411, + [SMALL_STATE(661)] = 12513, + [SMALL_STATE(662)] = 12615, + [SMALL_STATE(663)] = 12717, + [SMALL_STATE(664)] = 12819, + [SMALL_STATE(665)] = 12921, + [SMALL_STATE(666)] = 13023, + [SMALL_STATE(667)] = 13125, + [SMALL_STATE(668)] = 13227, [SMALL_STATE(669)] = 13329, [SMALL_STATE(670)] = 13431, [SMALL_STATE(671)] = 13532, @@ -113557,1206 +115507,1224 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(676)] = 14015, [SMALL_STATE(677)] = 14080, [SMALL_STATE(678)] = 14139, - [SMALL_STATE(679)] = 14198, - [SMALL_STATE(680)] = 14263, - [SMALL_STATE(681)] = 14322, - [SMALL_STATE(682)] = 14387, - [SMALL_STATE(683)] = 14479, - [SMALL_STATE(684)] = 14571, - [SMALL_STATE(685)] = 14663, - [SMALL_STATE(686)] = 14755, - [SMALL_STATE(687)] = 14847, - [SMALL_STATE(688)] = 14941, - [SMALL_STATE(689)] = 15033, - [SMALL_STATE(690)] = 15125, - [SMALL_STATE(691)] = 15217, - [SMALL_STATE(692)] = 15309, - [SMALL_STATE(693)] = 15401, - [SMALL_STATE(694)] = 15493, - [SMALL_STATE(695)] = 15585, - [SMALL_STATE(696)] = 15677, - [SMALL_STATE(697)] = 15769, - [SMALL_STATE(698)] = 15861, - [SMALL_STATE(699)] = 15953, - [SMALL_STATE(700)] = 16045, - [SMALL_STATE(701)] = 16137, - [SMALL_STATE(702)] = 16229, - [SMALL_STATE(703)] = 16321, - [SMALL_STATE(704)] = 16413, - [SMALL_STATE(705)] = 16474, - [SMALL_STATE(706)] = 16535, - [SMALL_STATE(707)] = 16592, - [SMALL_STATE(708)] = 16681, - [SMALL_STATE(709)] = 16770, - [SMALL_STATE(710)] = 16827, - [SMALL_STATE(711)] = 16918, - [SMALL_STATE(712)] = 16982, - [SMALL_STATE(713)] = 17041, - [SMALL_STATE(714)] = 17096, - [SMALL_STATE(715)] = 17151, - [SMALL_STATE(716)] = 17206, - [SMALL_STATE(717)] = 17261, - [SMALL_STATE(718)] = 17316, - [SMALL_STATE(719)] = 17371, - [SMALL_STATE(720)] = 17426, - [SMALL_STATE(721)] = 17481, - [SMALL_STATE(722)] = 17536, - [SMALL_STATE(723)] = 17591, - [SMALL_STATE(724)] = 17673, - [SMALL_STATE(725)] = 17755, - [SMALL_STATE(726)] = 17837, - [SMALL_STATE(727)] = 17919, - [SMALL_STATE(728)] = 18001, - [SMALL_STATE(729)] = 18083, - [SMALL_STATE(730)] = 18165, - [SMALL_STATE(731)] = 18247, - [SMALL_STATE(732)] = 18329, - [SMALL_STATE(733)] = 18411, - [SMALL_STATE(734)] = 18474, - [SMALL_STATE(735)] = 18537, - [SMALL_STATE(736)] = 18600, - [SMALL_STATE(737)] = 18663, - [SMALL_STATE(738)] = 18716, - [SMALL_STATE(739)] = 18779, - [SMALL_STATE(740)] = 18844, - [SMALL_STATE(741)] = 18907, - [SMALL_STATE(742)] = 18986, - [SMALL_STATE(743)] = 19038, - [SMALL_STATE(744)] = 19089, - [SMALL_STATE(745)] = 19150, - [SMALL_STATE(746)] = 19209, - [SMALL_STATE(747)] = 19260, + [SMALL_STATE(679)] = 14204, + [SMALL_STATE(680)] = 14269, + [SMALL_STATE(681)] = 14340, + [SMALL_STATE(682)] = 14399, + [SMALL_STATE(683)] = 14458, + [SMALL_STATE(684)] = 14550, + [SMALL_STATE(685)] = 14642, + [SMALL_STATE(686)] = 14734, + [SMALL_STATE(687)] = 14826, + [SMALL_STATE(688)] = 14918, + [SMALL_STATE(689)] = 15010, + [SMALL_STATE(690)] = 15102, + [SMALL_STATE(691)] = 15194, + [SMALL_STATE(692)] = 15286, + [SMALL_STATE(693)] = 15378, + [SMALL_STATE(694)] = 15470, + [SMALL_STATE(695)] = 15562, + [SMALL_STATE(696)] = 15654, + [SMALL_STATE(697)] = 15746, + [SMALL_STATE(698)] = 15840, + [SMALL_STATE(699)] = 15932, + [SMALL_STATE(700)] = 16024, + [SMALL_STATE(701)] = 16116, + [SMALL_STATE(702)] = 16208, + [SMALL_STATE(703)] = 16300, + [SMALL_STATE(704)] = 16392, + [SMALL_STATE(705)] = 16484, + [SMALL_STATE(706)] = 16541, + [SMALL_STATE(707)] = 16598, + [SMALL_STATE(708)] = 16655, + [SMALL_STATE(709)] = 16744, + [SMALL_STATE(710)] = 16801, + [SMALL_STATE(711)] = 16858, + [SMALL_STATE(712)] = 16949, + [SMALL_STATE(713)] = 17038, + [SMALL_STATE(714)] = 17095, + [SMALL_STATE(715)] = 17152, + [SMALL_STATE(716)] = 17213, + [SMALL_STATE(717)] = 17274, + [SMALL_STATE(718)] = 17338, + [SMALL_STATE(719)] = 17393, + [SMALL_STATE(720)] = 17448, + [SMALL_STATE(721)] = 17503, + [SMALL_STATE(722)] = 17558, + [SMALL_STATE(723)] = 17613, + [SMALL_STATE(724)] = 17668, + [SMALL_STATE(725)] = 17723, + [SMALL_STATE(726)] = 17778, + [SMALL_STATE(727)] = 17833, + [SMALL_STATE(728)] = 17888, + [SMALL_STATE(729)] = 17947, + [SMALL_STATE(730)] = 18029, + [SMALL_STATE(731)] = 18111, + [SMALL_STATE(732)] = 18193, + [SMALL_STATE(733)] = 18275, + [SMALL_STATE(734)] = 18357, + [SMALL_STATE(735)] = 18447, + [SMALL_STATE(736)] = 18529, + [SMALL_STATE(737)] = 18611, + [SMALL_STATE(738)] = 18693, + [SMALL_STATE(739)] = 18775, + [SMALL_STATE(740)] = 18857, + [SMALL_STATE(741)] = 18920, + [SMALL_STATE(742)] = 18981, + [SMALL_STATE(743)] = 19044, + [SMALL_STATE(744)] = 19107, + [SMALL_STATE(745)] = 19186, + [SMALL_STATE(746)] = 19239, + [SMALL_STATE(747)] = 19292, [SMALL_STATE(748)] = 19345, - [SMALL_STATE(749)] = 19430, - [SMALL_STATE(750)] = 19481, + [SMALL_STATE(749)] = 19408, + [SMALL_STATE(750)] = 19469, [SMALL_STATE(751)] = 19532, - [SMALL_STATE(752)] = 19583, - [SMALL_STATE(753)] = 19650, - [SMALL_STATE(754)] = 19701, - [SMALL_STATE(755)] = 19752, - [SMALL_STATE(756)] = 19803, - [SMALL_STATE(757)] = 19864, - [SMALL_STATE(758)] = 19915, - [SMALL_STATE(759)] = 19966, - [SMALL_STATE(760)] = 20037, - [SMALL_STATE(761)] = 20098, - [SMALL_STATE(762)] = 20149, - [SMALL_STATE(763)] = 20210, + [SMALL_STATE(752)] = 19593, + [SMALL_STATE(753)] = 19656, + [SMALL_STATE(754)] = 19717, + [SMALL_STATE(755)] = 19778, + [SMALL_STATE(756)] = 19830, + [SMALL_STATE(757)] = 19882, + [SMALL_STATE(758)] = 19934, + [SMALL_STATE(759)] = 19986, + [SMALL_STATE(760)] = 20071, + [SMALL_STATE(761)] = 20122, + [SMALL_STATE(762)] = 20181, + [SMALL_STATE(763)] = 20244, [SMALL_STATE(764)] = 20295, - [SMALL_STATE(765)] = 20346, - [SMALL_STATE(766)] = 20397, - [SMALL_STATE(767)] = 20448, - [SMALL_STATE(768)] = 20513, - [SMALL_STATE(769)] = 20574, - [SMALL_STATE(770)] = 20625, - [SMALL_STATE(771)] = 20676, - [SMALL_STATE(772)] = 20727, - [SMALL_STATE(773)] = 20790, - [SMALL_STATE(774)] = 20841, - [SMALL_STATE(775)] = 20922, - [SMALL_STATE(776)] = 20981, - [SMALL_STATE(777)] = 21032, - [SMALL_STATE(778)] = 21083, - [SMALL_STATE(779)] = 21162, - [SMALL_STATE(780)] = 21213, - [SMALL_STATE(781)] = 21290, - [SMALL_STATE(782)] = 21365, - [SMALL_STATE(783)] = 21438, - [SMALL_STATE(784)] = 21492, - [SMALL_STATE(785)] = 21541, - [SMALL_STATE(786)] = 21590, - [SMALL_STATE(787)] = 21639, - [SMALL_STATE(788)] = 21688, - [SMALL_STATE(789)] = 21737, - [SMALL_STATE(790)] = 21786, - [SMALL_STATE(791)] = 21835, - [SMALL_STATE(792)] = 21884, - [SMALL_STATE(793)] = 21933, - [SMALL_STATE(794)] = 21982, - [SMALL_STATE(795)] = 22031, - [SMALL_STATE(796)] = 22080, - [SMALL_STATE(797)] = 22129, - [SMALL_STATE(798)] = 22178, - [SMALL_STATE(799)] = 22227, - [SMALL_STATE(800)] = 22276, - [SMALL_STATE(801)] = 22325, - [SMALL_STATE(802)] = 22374, - [SMALL_STATE(803)] = 22421, - [SMALL_STATE(804)] = 22468, - [SMALL_STATE(805)] = 22515, - [SMALL_STATE(806)] = 22562, - [SMALL_STATE(807)] = 22609, - [SMALL_STATE(808)] = 22664, - [SMALL_STATE(809)] = 22711, - [SMALL_STATE(810)] = 22758, - [SMALL_STATE(811)] = 22811, - [SMALL_STATE(812)] = 22858, - [SMALL_STATE(813)] = 22937, - [SMALL_STATE(814)] = 22984, - [SMALL_STATE(815)] = 23031, - [SMALL_STATE(816)] = 23078, - [SMALL_STATE(817)] = 23125, - [SMALL_STATE(818)] = 23180, - [SMALL_STATE(819)] = 23227, - [SMALL_STATE(820)] = 23274, - [SMALL_STATE(821)] = 23321, - [SMALL_STATE(822)] = 23368, - [SMALL_STATE(823)] = 23415, - [SMALL_STATE(824)] = 23462, - [SMALL_STATE(825)] = 23517, - [SMALL_STATE(826)] = 23564, - [SMALL_STATE(827)] = 23617, - [SMALL_STATE(828)] = 23672, - [SMALL_STATE(829)] = 23727, - [SMALL_STATE(830)] = 23774, - [SMALL_STATE(831)] = 23854, - [SMALL_STATE(832)] = 23900, - [SMALL_STATE(833)] = 23956, - [SMALL_STATE(834)] = 24012, - [SMALL_STATE(835)] = 24068, - [SMALL_STATE(836)] = 24114, - [SMALL_STATE(837)] = 24160, - [SMALL_STATE(838)] = 24240, - [SMALL_STATE(839)] = 24300, - [SMALL_STATE(840)] = 24362, - [SMALL_STATE(841)] = 24428, - [SMALL_STATE(842)] = 24496, - [SMALL_STATE(843)] = 24550, - [SMALL_STATE(844)] = 24606, - [SMALL_STATE(845)] = 24676, - [SMALL_STATE(846)] = 24748, - [SMALL_STATE(847)] = 24822, - [SMALL_STATE(848)] = 24878, - [SMALL_STATE(849)] = 24954, - [SMALL_STATE(850)] = 25000, - [SMALL_STATE(851)] = 25058, - [SMALL_STATE(852)] = 25138, - [SMALL_STATE(853)] = 25184, - [SMALL_STATE(854)] = 25229, - [SMALL_STATE(855)] = 25274, - [SMALL_STATE(856)] = 25323, - [SMALL_STATE(857)] = 25368, - [SMALL_STATE(858)] = 25417, - [SMALL_STATE(859)] = 25462, - [SMALL_STATE(860)] = 25511, - [SMALL_STATE(861)] = 25556, - [SMALL_STATE(862)] = 25601, - [SMALL_STATE(863)] = 25650, - [SMALL_STATE(864)] = 25695, - [SMALL_STATE(865)] = 25744, - [SMALL_STATE(866)] = 25793, - [SMALL_STATE(867)] = 25842, - [SMALL_STATE(868)] = 25891, - [SMALL_STATE(869)] = 25936, - [SMALL_STATE(870)] = 25981, - [SMALL_STATE(871)] = 26026, - [SMALL_STATE(872)] = 26071, - [SMALL_STATE(873)] = 26116, - [SMALL_STATE(874)] = 26161, - [SMALL_STATE(875)] = 26206, - [SMALL_STATE(876)] = 26251, - [SMALL_STATE(877)] = 26296, - [SMALL_STATE(878)] = 26341, - [SMALL_STATE(879)] = 26386, - [SMALL_STATE(880)] = 26431, - [SMALL_STATE(881)] = 26480, - [SMALL_STATE(882)] = 26525, - [SMALL_STATE(883)] = 26570, - [SMALL_STATE(884)] = 26615, - [SMALL_STATE(885)] = 26660, - [SMALL_STATE(886)] = 26705, - [SMALL_STATE(887)] = 26750, - [SMALL_STATE(888)] = 26795, - [SMALL_STATE(889)] = 26844, - [SMALL_STATE(890)] = 26893, - [SMALL_STATE(891)] = 26938, - [SMALL_STATE(892)] = 26983, - [SMALL_STATE(893)] = 27032, - [SMALL_STATE(894)] = 27081, - [SMALL_STATE(895)] = 27126, - [SMALL_STATE(896)] = 27175, - [SMALL_STATE(897)] = 27224, - [SMALL_STATE(898)] = 27269, - [SMALL_STATE(899)] = 27314, - [SMALL_STATE(900)] = 27371, - [SMALL_STATE(901)] = 27428, - [SMALL_STATE(902)] = 27485, - [SMALL_STATE(903)] = 27530, - [SMALL_STATE(904)] = 27587, - [SMALL_STATE(905)] = 27632, - [SMALL_STATE(906)] = 27677, - [SMALL_STATE(907)] = 27722, - [SMALL_STATE(908)] = 27767, - [SMALL_STATE(909)] = 27812, - [SMALL_STATE(910)] = 27861, - [SMALL_STATE(911)] = 27906, - [SMALL_STATE(912)] = 27955, - [SMALL_STATE(913)] = 28000, - [SMALL_STATE(914)] = 28045, - [SMALL_STATE(915)] = 28089, - [SMALL_STATE(916)] = 28133, - [SMALL_STATE(917)] = 28177, - [SMALL_STATE(918)] = 28221, - [SMALL_STATE(919)] = 28265, - [SMALL_STATE(920)] = 28309, - [SMALL_STATE(921)] = 28355, - [SMALL_STATE(922)] = 28399, - [SMALL_STATE(923)] = 28443, - [SMALL_STATE(924)] = 28487, - [SMALL_STATE(925)] = 28531, - [SMALL_STATE(926)] = 28575, - [SMALL_STATE(927)] = 28619, - [SMALL_STATE(928)] = 28663, - [SMALL_STATE(929)] = 28707, - [SMALL_STATE(930)] = 28751, - [SMALL_STATE(931)] = 28795, - [SMALL_STATE(932)] = 28839, - [SMALL_STATE(933)] = 28883, - [SMALL_STATE(934)] = 28927, - [SMALL_STATE(935)] = 28971, - [SMALL_STATE(936)] = 29015, - [SMALL_STATE(937)] = 29059, - [SMALL_STATE(938)] = 29103, - [SMALL_STATE(939)] = 29147, - [SMALL_STATE(940)] = 29199, - [SMALL_STATE(941)] = 29243, - [SMALL_STATE(942)] = 29287, - [SMALL_STATE(943)] = 29331, - [SMALL_STATE(944)] = 29375, - [SMALL_STATE(945)] = 29419, - [SMALL_STATE(946)] = 29463, - [SMALL_STATE(947)] = 29507, - [SMALL_STATE(948)] = 29576, - [SMALL_STATE(949)] = 29645, - [SMALL_STATE(950)] = 29714, - [SMALL_STATE(951)] = 29783, - [SMALL_STATE(952)] = 29839, - [SMALL_STATE(953)] = 29895, - [SMALL_STATE(954)] = 29951, - [SMALL_STATE(955)] = 30007, - [SMALL_STATE(956)] = 30059, - [SMALL_STATE(957)] = 30115, - [SMALL_STATE(958)] = 30164, - [SMALL_STATE(959)] = 30206, - [SMALL_STATE(960)] = 30246, - [SMALL_STATE(961)] = 30288, - [SMALL_STATE(962)] = 30330, - [SMALL_STATE(963)] = 30386, - [SMALL_STATE(964)] = 30426, - [SMALL_STATE(965)] = 30466, - [SMALL_STATE(966)] = 30508, - [SMALL_STATE(967)] = 30582, - [SMALL_STATE(968)] = 30636, - [SMALL_STATE(969)] = 30710, - [SMALL_STATE(970)] = 30780, - [SMALL_STATE(971)] = 30838, - [SMALL_STATE(972)] = 30906, - [SMALL_STATE(973)] = 30968, - [SMALL_STATE(974)] = 31032, - [SMALL_STATE(975)] = 31098, - [SMALL_STATE(976)] = 31166, - [SMALL_STATE(977)] = 31208, - [SMALL_STATE(978)] = 31248, - [SMALL_STATE(979)] = 31322, - [SMALL_STATE(980)] = 31361, - [SMALL_STATE(981)] = 31404, - [SMALL_STATE(982)] = 31447, - [SMALL_STATE(983)] = 31490, - [SMALL_STATE(984)] = 31553, - [SMALL_STATE(985)] = 31613, - [SMALL_STATE(986)] = 31673, - [SMALL_STATE(987)] = 31733, - [SMALL_STATE(988)] = 31793, - [SMALL_STATE(989)] = 31853, - [SMALL_STATE(990)] = 31899, - [SMALL_STATE(991)] = 31959, - [SMALL_STATE(992)] = 32019, - [SMALL_STATE(993)] = 32079, - [SMALL_STATE(994)] = 32154, - [SMALL_STATE(995)] = 32227, - [SMALL_STATE(996)] = 32302, - [SMALL_STATE(997)] = 32377, - [SMALL_STATE(998)] = 32452, - [SMALL_STATE(999)] = 32495, - [SMALL_STATE(1000)] = 32566, - [SMALL_STATE(1001)] = 32641, - [SMALL_STATE(1002)] = 32682, - [SMALL_STATE(1003)] = 32757, - [SMALL_STATE(1004)] = 32813, - [SMALL_STATE(1005)] = 32883, - [SMALL_STATE(1006)] = 32955, - [SMALL_STATE(1007)] = 33027, - [SMALL_STATE(1008)] = 33083, - [SMALL_STATE(1009)] = 33155, - [SMALL_STATE(1010)] = 33225, - [SMALL_STATE(1011)] = 33281, - [SMALL_STATE(1012)] = 33337, - [SMALL_STATE(1013)] = 33409, - [SMALL_STATE(1014)] = 33481, - [SMALL_STATE(1015)] = 33553, - [SMALL_STATE(1016)] = 33625, - [SMALL_STATE(1017)] = 33695, - [SMALL_STATE(1018)] = 33765, - [SMALL_STATE(1019)] = 33837, - [SMALL_STATE(1020)] = 33907, - [SMALL_STATE(1021)] = 33963, - [SMALL_STATE(1022)] = 34019, - [SMALL_STATE(1023)] = 34091, - [SMALL_STATE(1024)] = 34147, - [SMALL_STATE(1025)] = 34219, - [SMALL_STATE(1026)] = 34291, - [SMALL_STATE(1027)] = 34363, - [SMALL_STATE(1028)] = 34435, - [SMALL_STATE(1029)] = 34507, - [SMALL_STATE(1030)] = 34563, - [SMALL_STATE(1031)] = 34619, - [SMALL_STATE(1032)] = 34675, - [SMALL_STATE(1033)] = 34747, - [SMALL_STATE(1034)] = 34803, - [SMALL_STATE(1035)] = 34859, - [SMALL_STATE(1036)] = 34915, - [SMALL_STATE(1037)] = 34971, - [SMALL_STATE(1038)] = 35043, - [SMALL_STATE(1039)] = 35099, - [SMALL_STATE(1040)] = 35171, - [SMALL_STATE(1041)] = 35243, - [SMALL_STATE(1042)] = 35315, - [SMALL_STATE(1043)] = 35385, - [SMALL_STATE(1044)] = 35457, - [SMALL_STATE(1045)] = 35529, - [SMALL_STATE(1046)] = 35599, - [SMALL_STATE(1047)] = 35671, - [SMALL_STATE(1048)] = 35740, - [SMALL_STATE(1049)] = 35809, - [SMALL_STATE(1050)] = 35866, - [SMALL_STATE(1051)] = 35935, - [SMALL_STATE(1052)] = 35986, - [SMALL_STATE(1053)] = 36039, - [SMALL_STATE(1054)] = 36108, - [SMALL_STATE(1055)] = 36177, - [SMALL_STATE(1056)] = 36246, - [SMALL_STATE(1057)] = 36315, - [SMALL_STATE(1058)] = 36368, - [SMALL_STATE(1059)] = 36421, - [SMALL_STATE(1060)] = 36490, - [SMALL_STATE(1061)] = 36559, - [SMALL_STATE(1062)] = 36628, - [SMALL_STATE(1063)] = 36697, - [SMALL_STATE(1064)] = 36766, - [SMALL_STATE(1065)] = 36819, - [SMALL_STATE(1066)] = 36888, - [SMALL_STATE(1067)] = 36941, - [SMALL_STATE(1068)] = 37010, - [SMALL_STATE(1069)] = 37079, - [SMALL_STATE(1070)] = 37148, - [SMALL_STATE(1071)] = 37217, - [SMALL_STATE(1072)] = 37270, - [SMALL_STATE(1073)] = 37339, - [SMALL_STATE(1074)] = 37398, - [SMALL_STATE(1075)] = 37447, - [SMALL_STATE(1076)] = 37516, - [SMALL_STATE(1077)] = 37585, - [SMALL_STATE(1078)] = 37654, - [SMALL_STATE(1079)] = 37707, - [SMALL_STATE(1080)] = 37776, - [SMALL_STATE(1081)] = 37815, - [SMALL_STATE(1082)] = 37884, - [SMALL_STATE(1083)] = 37949, - [SMALL_STATE(1084)] = 38018, - [SMALL_STATE(1085)] = 38087, - [SMALL_STATE(1086)] = 38156, - [SMALL_STATE(1087)] = 38217, - [SMALL_STATE(1088)] = 38286, - [SMALL_STATE(1089)] = 38355, - [SMALL_STATE(1090)] = 38418, - [SMALL_STATE(1091)] = 38481, - [SMALL_STATE(1092)] = 38525, - [SMALL_STATE(1093)] = 38561, - [SMALL_STATE(1094)] = 38627, - [SMALL_STATE(1095)] = 38669, - [SMALL_STATE(1096)] = 38711, - [SMALL_STATE(1097)] = 38747, - [SMALL_STATE(1098)] = 38783, - [SMALL_STATE(1099)] = 38819, - [SMALL_STATE(1100)] = 38866, - [SMALL_STATE(1101)] = 38913, - [SMALL_STATE(1102)] = 38944, - [SMALL_STATE(1103)] = 38991, - [SMALL_STATE(1104)] = 39022, - [SMALL_STATE(1105)] = 39069, - [SMALL_STATE(1106)] = 39116, - [SMALL_STATE(1107)] = 39163, - [SMALL_STATE(1108)] = 39207, - [SMALL_STATE(1109)] = 39251, - [SMALL_STATE(1110)] = 39295, - [SMALL_STATE(1111)] = 39339, - [SMALL_STATE(1112)] = 39383, - [SMALL_STATE(1113)] = 39417, - [SMALL_STATE(1114)] = 39461, - [SMALL_STATE(1115)] = 39499, - [SMALL_STATE(1116)] = 39542, - [SMALL_STATE(1117)] = 39597, - [SMALL_STATE(1118)] = 39652, - [SMALL_STATE(1119)] = 39695, - [SMALL_STATE(1120)] = 39738, - [SMALL_STATE(1121)] = 39793, - [SMALL_STATE(1122)] = 39826, - [SMALL_STATE(1123)] = 39868, - [SMALL_STATE(1124)] = 39908, - [SMALL_STATE(1125)] = 39948, - [SMALL_STATE(1126)] = 39988, - [SMALL_STATE(1127)] = 40028, - [SMALL_STATE(1128)] = 40068, - [SMALL_STATE(1129)] = 40108, - [SMALL_STATE(1130)] = 40148, - [SMALL_STATE(1131)] = 40188, - [SMALL_STATE(1132)] = 40228, - [SMALL_STATE(1133)] = 40268, - [SMALL_STATE(1134)] = 40308, - [SMALL_STATE(1135)] = 40336, - [SMALL_STATE(1136)] = 40364, - [SMALL_STATE(1137)] = 40392, - [SMALL_STATE(1138)] = 40432, - [SMALL_STATE(1139)] = 40472, - [SMALL_STATE(1140)] = 40512, - [SMALL_STATE(1141)] = 40552, - [SMALL_STATE(1142)] = 40592, - [SMALL_STATE(1143)] = 40632, - [SMALL_STATE(1144)] = 40672, - [SMALL_STATE(1145)] = 40712, - [SMALL_STATE(1146)] = 40752, - [SMALL_STATE(1147)] = 40792, - [SMALL_STATE(1148)] = 40832, - [SMALL_STATE(1149)] = 40864, - [SMALL_STATE(1150)] = 40896, - [SMALL_STATE(1151)] = 40936, - [SMALL_STATE(1152)] = 40964, - [SMALL_STATE(1153)] = 40992, - [SMALL_STATE(1154)] = 41024, - [SMALL_STATE(1155)] = 41052, - [SMALL_STATE(1156)] = 41100, - [SMALL_STATE(1157)] = 41146, - [SMALL_STATE(1158)] = 41192, - [SMALL_STATE(1159)] = 41236, - [SMALL_STATE(1160)] = 41276, - [SMALL_STATE(1161)] = 41312, - [SMALL_STATE(1162)] = 41346, - [SMALL_STATE(1163)] = 41386, - [SMALL_STATE(1164)] = 41426, - [SMALL_STATE(1165)] = 41476, - [SMALL_STATE(1166)] = 41504, - [SMALL_STATE(1167)] = 41532, - [SMALL_STATE(1168)] = 41572, - [SMALL_STATE(1169)] = 41612, - [SMALL_STATE(1170)] = 41644, - [SMALL_STATE(1171)] = 41684, - [SMALL_STATE(1172)] = 41716, - [SMALL_STATE(1173)] = 41744, - [SMALL_STATE(1174)] = 41784, - [SMALL_STATE(1175)] = 41824, - [SMALL_STATE(1176)] = 41864, - [SMALL_STATE(1177)] = 41904, - [SMALL_STATE(1178)] = 41944, - [SMALL_STATE(1179)] = 41984, - [SMALL_STATE(1180)] = 42024, - [SMALL_STATE(1181)] = 42064, - [SMALL_STATE(1182)] = 42112, - [SMALL_STATE(1183)] = 42140, - [SMALL_STATE(1184)] = 42185, - [SMALL_STATE(1185)] = 42228, - [SMALL_STATE(1186)] = 42255, - [SMALL_STATE(1187)] = 42282, - [SMALL_STATE(1188)] = 42309, - [SMALL_STATE(1189)] = 42354, - [SMALL_STATE(1190)] = 42399, - [SMALL_STATE(1191)] = 42448, - [SMALL_STATE(1192)] = 42475, - [SMALL_STATE(1193)] = 42520, - [SMALL_STATE(1194)] = 42565, - [SMALL_STATE(1195)] = 42592, - [SMALL_STATE(1196)] = 42621, - [SMALL_STATE(1197)] = 42666, - [SMALL_STATE(1198)] = 42693, - [SMALL_STATE(1199)] = 42738, - [SMALL_STATE(1200)] = 42765, - [SMALL_STATE(1201)] = 42796, - [SMALL_STATE(1202)] = 42837, - [SMALL_STATE(1203)] = 42872, - [SMALL_STATE(1204)] = 42917, - [SMALL_STATE(1205)] = 42962, - [SMALL_STATE(1206)] = 42989, - [SMALL_STATE(1207)] = 43034, - [SMALL_STATE(1208)] = 43061, - [SMALL_STATE(1209)] = 43100, - [SMALL_STATE(1210)] = 43149, - [SMALL_STATE(1211)] = 43176, - [SMALL_STATE(1212)] = 43213, - [SMALL_STATE(1213)] = 43248, - [SMALL_STATE(1214)] = 43281, - [SMALL_STATE(1215)] = 43326, - [SMALL_STATE(1216)] = 43371, - [SMALL_STATE(1217)] = 43406, - [SMALL_STATE(1218)] = 43447, - [SMALL_STATE(1219)] = 43488, - [SMALL_STATE(1220)] = 43529, - [SMALL_STATE(1221)] = 43570, - [SMALL_STATE(1222)] = 43611, - [SMALL_STATE(1223)] = 43652, - [SMALL_STATE(1224)] = 43693, - [SMALL_STATE(1225)] = 43734, - [SMALL_STATE(1226)] = 43775, - [SMALL_STATE(1227)] = 43816, - [SMALL_STATE(1228)] = 43864, - [SMALL_STATE(1229)] = 43902, - [SMALL_STATE(1230)] = 43950, - [SMALL_STATE(1231)] = 43998, - [SMALL_STATE(1232)] = 44046, - [SMALL_STATE(1233)] = 44084, - [SMALL_STATE(1234)] = 44132, - [SMALL_STATE(1235)] = 44177, - [SMALL_STATE(1236)] = 44218, - [SMALL_STATE(1237)] = 44263, - [SMALL_STATE(1238)] = 44304, - [SMALL_STATE(1239)] = 44345, - [SMALL_STATE(1240)] = 44390, - [SMALL_STATE(1241)] = 44435, - [SMALL_STATE(1242)] = 44476, - [SMALL_STATE(1243)] = 44521, - [SMALL_STATE(1244)] = 44559, - [SMALL_STATE(1245)] = 44585, - [SMALL_STATE(1246)] = 44623, - [SMALL_STATE(1247)] = 44661, - [SMALL_STATE(1248)] = 44699, - [SMALL_STATE(1249)] = 44737, - [SMALL_STATE(1250)] = 44767, - [SMALL_STATE(1251)] = 44802, - [SMALL_STATE(1252)] = 44837, - [SMALL_STATE(1253)] = 44876, - [SMALL_STATE(1254)] = 44901, - [SMALL_STATE(1255)] = 44930, - [SMALL_STATE(1256)] = 44965, - [SMALL_STATE(1257)] = 45000, - [SMALL_STATE(1258)] = 45035, - [SMALL_STATE(1259)] = 45064, - [SMALL_STATE(1260)] = 45099, - [SMALL_STATE(1261)] = 45134, - [SMALL_STATE(1262)] = 45163, - [SMALL_STATE(1263)] = 45192, - [SMALL_STATE(1264)] = 45217, - [SMALL_STATE(1265)] = 45252, - [SMALL_STATE(1266)] = 45287, - [SMALL_STATE(1267)] = 45312, - [SMALL_STATE(1268)] = 45337, - [SMALL_STATE(1269)] = 45372, - [SMALL_STATE(1270)] = 45407, - [SMALL_STATE(1271)] = 45442, - [SMALL_STATE(1272)] = 45474, - [SMALL_STATE(1273)] = 45510, - [SMALL_STATE(1274)] = 45530, - [SMALL_STATE(1275)] = 45550, - [SMALL_STATE(1276)] = 45584, - [SMALL_STATE(1277)] = 45604, - [SMALL_STATE(1278)] = 45628, - [SMALL_STATE(1279)] = 45660, - [SMALL_STATE(1280)] = 45692, - [SMALL_STATE(1281)] = 45724, - [SMALL_STATE(1282)] = 45756, - [SMALL_STATE(1283)] = 45788, - [SMALL_STATE(1284)] = 45817, - [SMALL_STATE(1285)] = 45844, - [SMALL_STATE(1286)] = 45873, - [SMALL_STATE(1287)] = 45902, - [SMALL_STATE(1288)] = 45929, - [SMALL_STATE(1289)] = 45958, - [SMALL_STATE(1290)] = 45987, - [SMALL_STATE(1291)] = 46016, - [SMALL_STATE(1292)] = 46047, - [SMALL_STATE(1293)] = 46076, - [SMALL_STATE(1294)] = 46103, - [SMALL_STATE(1295)] = 46130, - [SMALL_STATE(1296)] = 46159, - [SMALL_STATE(1297)] = 46177, - [SMALL_STATE(1298)] = 46195, - [SMALL_STATE(1299)] = 46217, - [SMALL_STATE(1300)] = 46243, - [SMALL_STATE(1301)] = 46261, - [SMALL_STATE(1302)] = 46287, - [SMALL_STATE(1303)] = 46305, - [SMALL_STATE(1304)] = 46323, - [SMALL_STATE(1305)] = 46341, - [SMALL_STATE(1306)] = 46365, - [SMALL_STATE(1307)] = 46395, - [SMALL_STATE(1308)] = 46421, - [SMALL_STATE(1309)] = 46445, - [SMALL_STATE(1310)] = 46471, - [SMALL_STATE(1311)] = 46500, - [SMALL_STATE(1312)] = 46523, - [SMALL_STATE(1313)] = 46548, - [SMALL_STATE(1314)] = 46577, - [SMALL_STATE(1315)] = 46606, - [SMALL_STATE(1316)] = 46629, - [SMALL_STATE(1317)] = 46650, - [SMALL_STATE(1318)] = 46679, - [SMALL_STATE(1319)] = 46700, - [SMALL_STATE(1320)] = 46721, - [SMALL_STATE(1321)] = 46742, - [SMALL_STATE(1322)] = 46763, - [SMALL_STATE(1323)] = 46792, - [SMALL_STATE(1324)] = 46813, - [SMALL_STATE(1325)] = 46839, - [SMALL_STATE(1326)] = 46859, - [SMALL_STATE(1327)] = 46883, - [SMALL_STATE(1328)] = 46909, - [SMALL_STATE(1329)] = 46929, - [SMALL_STATE(1330)] = 46945, - [SMALL_STATE(1331)] = 46961, - [SMALL_STATE(1332)] = 46977, - [SMALL_STATE(1333)] = 46993, - [SMALL_STATE(1334)] = 47009, - [SMALL_STATE(1335)] = 47029, - [SMALL_STATE(1336)] = 47045, - [SMALL_STATE(1337)] = 47071, - [SMALL_STATE(1338)] = 47089, - [SMALL_STATE(1339)] = 47115, - [SMALL_STATE(1340)] = 47141, - [SMALL_STATE(1341)] = 47157, - [SMALL_STATE(1342)] = 47177, - [SMALL_STATE(1343)] = 47193, - [SMALL_STATE(1344)] = 47208, - [SMALL_STATE(1345)] = 47233, - [SMALL_STATE(1346)] = 47248, - [SMALL_STATE(1347)] = 47271, - [SMALL_STATE(1348)] = 47286, - [SMALL_STATE(1349)] = 47309, - [SMALL_STATE(1350)] = 47324, - [SMALL_STATE(1351)] = 47339, - [SMALL_STATE(1352)] = 47362, - [SMALL_STATE(1353)] = 47377, - [SMALL_STATE(1354)] = 47392, - [SMALL_STATE(1355)] = 47407, - [SMALL_STATE(1356)] = 47422, - [SMALL_STATE(1357)] = 47440, - [SMALL_STATE(1358)] = 47454, - [SMALL_STATE(1359)] = 47470, - [SMALL_STATE(1360)] = 47488, - [SMALL_STATE(1361)] = 47504, - [SMALL_STATE(1362)] = 47520, - [SMALL_STATE(1363)] = 47538, - [SMALL_STATE(1364)] = 47552, - [SMALL_STATE(1365)] = 47570, - [SMALL_STATE(1366)] = 47588, - [SMALL_STATE(1367)] = 47602, - [SMALL_STATE(1368)] = 47620, - [SMALL_STATE(1369)] = 47638, - [SMALL_STATE(1370)] = 47656, - [SMALL_STATE(1371)] = 47670, - [SMALL_STATE(1372)] = 47681, - [SMALL_STATE(1373)] = 47692, - [SMALL_STATE(1374)] = 47703, - [SMALL_STATE(1375)] = 47722, - [SMALL_STATE(1376)] = 47733, - [SMALL_STATE(1377)] = 47744, - [SMALL_STATE(1378)] = 47755, - [SMALL_STATE(1379)] = 47766, - [SMALL_STATE(1380)] = 47777, - [SMALL_STATE(1381)] = 47788, - [SMALL_STATE(1382)] = 47799, - [SMALL_STATE(1383)] = 47810, - [SMALL_STATE(1384)] = 47827, - [SMALL_STATE(1385)] = 47846, - [SMALL_STATE(1386)] = 47857, - [SMALL_STATE(1387)] = 47874, - [SMALL_STATE(1388)] = 47888, - [SMALL_STATE(1389)] = 47902, - [SMALL_STATE(1390)] = 47918, - [SMALL_STATE(1391)] = 47934, - [SMALL_STATE(1392)] = 47948, - [SMALL_STATE(1393)] = 47964, - [SMALL_STATE(1394)] = 47978, - [SMALL_STATE(1395)] = 47992, - [SMALL_STATE(1396)] = 48006, - [SMALL_STATE(1397)] = 48020, - [SMALL_STATE(1398)] = 48034, - [SMALL_STATE(1399)] = 48048, - [SMALL_STATE(1400)] = 48062, - [SMALL_STATE(1401)] = 48076, - [SMALL_STATE(1402)] = 48092, - [SMALL_STATE(1403)] = 48106, - [SMALL_STATE(1404)] = 48122, - [SMALL_STATE(1405)] = 48136, - [SMALL_STATE(1406)] = 48152, - [SMALL_STATE(1407)] = 48166, - [SMALL_STATE(1408)] = 48180, - [SMALL_STATE(1409)] = 48196, - [SMALL_STATE(1410)] = 48212, - [SMALL_STATE(1411)] = 48226, - [SMALL_STATE(1412)] = 48242, - [SMALL_STATE(1413)] = 48258, - [SMALL_STATE(1414)] = 48272, - [SMALL_STATE(1415)] = 48286, - [SMALL_STATE(1416)] = 48300, - [SMALL_STATE(1417)] = 48314, - [SMALL_STATE(1418)] = 48328, - [SMALL_STATE(1419)] = 48338, - [SMALL_STATE(1420)] = 48352, - [SMALL_STATE(1421)] = 48366, - [SMALL_STATE(1422)] = 48382, - [SMALL_STATE(1423)] = 48396, - [SMALL_STATE(1424)] = 48410, - [SMALL_STATE(1425)] = 48426, - [SMALL_STATE(1426)] = 48442, - [SMALL_STATE(1427)] = 48456, - [SMALL_STATE(1428)] = 48470, - [SMALL_STATE(1429)] = 48484, - [SMALL_STATE(1430)] = 48500, - [SMALL_STATE(1431)] = 48514, - [SMALL_STATE(1432)] = 48528, - [SMALL_STATE(1433)] = 48542, - [SMALL_STATE(1434)] = 48556, - [SMALL_STATE(1435)] = 48570, - [SMALL_STATE(1436)] = 48584, - [SMALL_STATE(1437)] = 48598, - [SMALL_STATE(1438)] = 48612, - [SMALL_STATE(1439)] = 48628, - [SMALL_STATE(1440)] = 48642, - [SMALL_STATE(1441)] = 48656, - [SMALL_STATE(1442)] = 48672, - [SMALL_STATE(1443)] = 48688, - [SMALL_STATE(1444)] = 48704, - [SMALL_STATE(1445)] = 48720, - [SMALL_STATE(1446)] = 48734, - [SMALL_STATE(1447)] = 48748, - [SMALL_STATE(1448)] = 48762, - [SMALL_STATE(1449)] = 48776, - [SMALL_STATE(1450)] = 48789, - [SMALL_STATE(1451)] = 48802, - [SMALL_STATE(1452)] = 48815, - [SMALL_STATE(1453)] = 48828, - [SMALL_STATE(1454)] = 48841, - [SMALL_STATE(1455)] = 48854, - [SMALL_STATE(1456)] = 48863, - [SMALL_STATE(1457)] = 48876, - [SMALL_STATE(1458)] = 48889, - [SMALL_STATE(1459)] = 48902, - [SMALL_STATE(1460)] = 48915, - [SMALL_STATE(1461)] = 48928, - [SMALL_STATE(1462)] = 48941, - [SMALL_STATE(1463)] = 48954, - [SMALL_STATE(1464)] = 48963, - [SMALL_STATE(1465)] = 48976, - [SMALL_STATE(1466)] = 48989, - [SMALL_STATE(1467)] = 48998, - [SMALL_STATE(1468)] = 49011, - [SMALL_STATE(1469)] = 49024, - [SMALL_STATE(1470)] = 49037, - [SMALL_STATE(1471)] = 49050, - [SMALL_STATE(1472)] = 49063, - [SMALL_STATE(1473)] = 49076, - [SMALL_STATE(1474)] = 49089, - [SMALL_STATE(1475)] = 49102, - [SMALL_STATE(1476)] = 49115, - [SMALL_STATE(1477)] = 49128, - [SMALL_STATE(1478)] = 49141, - [SMALL_STATE(1479)] = 49150, - [SMALL_STATE(1480)] = 49159, - [SMALL_STATE(1481)] = 49172, - [SMALL_STATE(1482)] = 49185, - [SMALL_STATE(1483)] = 49198, - [SMALL_STATE(1484)] = 49211, - [SMALL_STATE(1485)] = 49224, - [SMALL_STATE(1486)] = 49237, - [SMALL_STATE(1487)] = 49250, - [SMALL_STATE(1488)] = 49263, - [SMALL_STATE(1489)] = 49276, - [SMALL_STATE(1490)] = 49285, - [SMALL_STATE(1491)] = 49298, - [SMALL_STATE(1492)] = 49311, - [SMALL_STATE(1493)] = 49324, - [SMALL_STATE(1494)] = 49337, - [SMALL_STATE(1495)] = 49350, - [SMALL_STATE(1496)] = 49363, - [SMALL_STATE(1497)] = 49376, - [SMALL_STATE(1498)] = 49385, - [SMALL_STATE(1499)] = 49398, - [SMALL_STATE(1500)] = 49411, - [SMALL_STATE(1501)] = 49424, - [SMALL_STATE(1502)] = 49437, - [SMALL_STATE(1503)] = 49450, - [SMALL_STATE(1504)] = 49463, - [SMALL_STATE(1505)] = 49476, - [SMALL_STATE(1506)] = 49489, - [SMALL_STATE(1507)] = 49502, - [SMALL_STATE(1508)] = 49515, - [SMALL_STATE(1509)] = 49528, - [SMALL_STATE(1510)] = 49541, - [SMALL_STATE(1511)] = 49554, - [SMALL_STATE(1512)] = 49563, - [SMALL_STATE(1513)] = 49576, - [SMALL_STATE(1514)] = 49587, - [SMALL_STATE(1515)] = 49600, - [SMALL_STATE(1516)] = 49609, - [SMALL_STATE(1517)] = 49618, - [SMALL_STATE(1518)] = 49631, - [SMALL_STATE(1519)] = 49644, - [SMALL_STATE(1520)] = 49657, - [SMALL_STATE(1521)] = 49670, - [SMALL_STATE(1522)] = 49683, - [SMALL_STATE(1523)] = 49696, - [SMALL_STATE(1524)] = 49709, - [SMALL_STATE(1525)] = 49722, - [SMALL_STATE(1526)] = 49735, - [SMALL_STATE(1527)] = 49748, - [SMALL_STATE(1528)] = 49759, - [SMALL_STATE(1529)] = 49772, - [SMALL_STATE(1530)] = 49785, - [SMALL_STATE(1531)] = 49795, - [SMALL_STATE(1532)] = 49805, - [SMALL_STATE(1533)] = 49815, - [SMALL_STATE(1534)] = 49825, - [SMALL_STATE(1535)] = 49833, - [SMALL_STATE(1536)] = 49843, - [SMALL_STATE(1537)] = 49853, - [SMALL_STATE(1538)] = 49863, - [SMALL_STATE(1539)] = 49873, - [SMALL_STATE(1540)] = 49883, - [SMALL_STATE(1541)] = 49891, - [SMALL_STATE(1542)] = 49899, - [SMALL_STATE(1543)] = 49909, - [SMALL_STATE(1544)] = 49919, - [SMALL_STATE(1545)] = 49929, - [SMALL_STATE(1546)] = 49939, - [SMALL_STATE(1547)] = 49947, - [SMALL_STATE(1548)] = 49957, - [SMALL_STATE(1549)] = 49967, - [SMALL_STATE(1550)] = 49975, - [SMALL_STATE(1551)] = 49985, - [SMALL_STATE(1552)] = 49993, - [SMALL_STATE(1553)] = 50001, - [SMALL_STATE(1554)] = 50009, - [SMALL_STATE(1555)] = 50019, - [SMALL_STATE(1556)] = 50029, - [SMALL_STATE(1557)] = 50039, - [SMALL_STATE(1558)] = 50047, - [SMALL_STATE(1559)] = 50057, - [SMALL_STATE(1560)] = 50067, - [SMALL_STATE(1561)] = 50077, - [SMALL_STATE(1562)] = 50087, - [SMALL_STATE(1563)] = 50095, - [SMALL_STATE(1564)] = 50103, - [SMALL_STATE(1565)] = 50113, - [SMALL_STATE(1566)] = 50121, - [SMALL_STATE(1567)] = 50131, - [SMALL_STATE(1568)] = 50141, - [SMALL_STATE(1569)] = 50151, - [SMALL_STATE(1570)] = 50161, - [SMALL_STATE(1571)] = 50171, - [SMALL_STATE(1572)] = 50181, - [SMALL_STATE(1573)] = 50191, - [SMALL_STATE(1574)] = 50199, - [SMALL_STATE(1575)] = 50207, - [SMALL_STATE(1576)] = 50217, - [SMALL_STATE(1577)] = 50227, - [SMALL_STATE(1578)] = 50237, - [SMALL_STATE(1579)] = 50247, - [SMALL_STATE(1580)] = 50257, - [SMALL_STATE(1581)] = 50267, - [SMALL_STATE(1582)] = 50277, - [SMALL_STATE(1583)] = 50287, - [SMALL_STATE(1584)] = 50297, - [SMALL_STATE(1585)] = 50307, - [SMALL_STATE(1586)] = 50317, - [SMALL_STATE(1587)] = 50327, - [SMALL_STATE(1588)] = 50335, - [SMALL_STATE(1589)] = 50345, - [SMALL_STATE(1590)] = 50355, - [SMALL_STATE(1591)] = 50363, - [SMALL_STATE(1592)] = 50373, - [SMALL_STATE(1593)] = 50381, - [SMALL_STATE(1594)] = 50391, - [SMALL_STATE(1595)] = 50401, - [SMALL_STATE(1596)] = 50411, - [SMALL_STATE(1597)] = 50421, - [SMALL_STATE(1598)] = 50431, - [SMALL_STATE(1599)] = 50441, - [SMALL_STATE(1600)] = 50451, - [SMALL_STATE(1601)] = 50461, - [SMALL_STATE(1602)] = 50471, - [SMALL_STATE(1603)] = 50481, - [SMALL_STATE(1604)] = 50491, - [SMALL_STATE(1605)] = 50501, - [SMALL_STATE(1606)] = 50511, - [SMALL_STATE(1607)] = 50521, - [SMALL_STATE(1608)] = 50531, - [SMALL_STATE(1609)] = 50541, - [SMALL_STATE(1610)] = 50551, - [SMALL_STATE(1611)] = 50561, - [SMALL_STATE(1612)] = 50571, - [SMALL_STATE(1613)] = 50581, - [SMALL_STATE(1614)] = 50591, - [SMALL_STATE(1615)] = 50601, - [SMALL_STATE(1616)] = 50611, - [SMALL_STATE(1617)] = 50621, - [SMALL_STATE(1618)] = 50629, - [SMALL_STATE(1619)] = 50637, - [SMALL_STATE(1620)] = 50647, - [SMALL_STATE(1621)] = 50657, - [SMALL_STATE(1622)] = 50667, - [SMALL_STATE(1623)] = 50677, - [SMALL_STATE(1624)] = 50687, - [SMALL_STATE(1625)] = 50697, - [SMALL_STATE(1626)] = 50707, - [SMALL_STATE(1627)] = 50717, - [SMALL_STATE(1628)] = 50727, - [SMALL_STATE(1629)] = 50735, - [SMALL_STATE(1630)] = 50745, - [SMALL_STATE(1631)] = 50753, - [SMALL_STATE(1632)] = 50763, - [SMALL_STATE(1633)] = 50773, - [SMALL_STATE(1634)] = 50780, - [SMALL_STATE(1635)] = 50787, - [SMALL_STATE(1636)] = 50794, - [SMALL_STATE(1637)] = 50801, - [SMALL_STATE(1638)] = 50808, - [SMALL_STATE(1639)] = 50815, - [SMALL_STATE(1640)] = 50822, - [SMALL_STATE(1641)] = 50829, - [SMALL_STATE(1642)] = 50836, - [SMALL_STATE(1643)] = 50843, - [SMALL_STATE(1644)] = 50850, - [SMALL_STATE(1645)] = 50857, - [SMALL_STATE(1646)] = 50864, - [SMALL_STATE(1647)] = 50871, - [SMALL_STATE(1648)] = 50878, - [SMALL_STATE(1649)] = 50885, - [SMALL_STATE(1650)] = 50892, - [SMALL_STATE(1651)] = 50899, - [SMALL_STATE(1652)] = 50906, - [SMALL_STATE(1653)] = 50913, - [SMALL_STATE(1654)] = 50920, - [SMALL_STATE(1655)] = 50927, - [SMALL_STATE(1656)] = 50934, - [SMALL_STATE(1657)] = 50941, - [SMALL_STATE(1658)] = 50948, - [SMALL_STATE(1659)] = 50955, - [SMALL_STATE(1660)] = 50962, - [SMALL_STATE(1661)] = 50969, - [SMALL_STATE(1662)] = 50976, - [SMALL_STATE(1663)] = 50983, - [SMALL_STATE(1664)] = 50990, - [SMALL_STATE(1665)] = 50997, - [SMALL_STATE(1666)] = 51004, - [SMALL_STATE(1667)] = 51011, - [SMALL_STATE(1668)] = 51018, - [SMALL_STATE(1669)] = 51025, - [SMALL_STATE(1670)] = 51032, - [SMALL_STATE(1671)] = 51039, - [SMALL_STATE(1672)] = 51046, - [SMALL_STATE(1673)] = 51053, - [SMALL_STATE(1674)] = 51060, - [SMALL_STATE(1675)] = 51067, - [SMALL_STATE(1676)] = 51074, - [SMALL_STATE(1677)] = 51081, - [SMALL_STATE(1678)] = 51088, - [SMALL_STATE(1679)] = 51095, - [SMALL_STATE(1680)] = 51102, - [SMALL_STATE(1681)] = 51109, - [SMALL_STATE(1682)] = 51116, - [SMALL_STATE(1683)] = 51123, - [SMALL_STATE(1684)] = 51130, - [SMALL_STATE(1685)] = 51137, - [SMALL_STATE(1686)] = 51144, - [SMALL_STATE(1687)] = 51151, - [SMALL_STATE(1688)] = 51158, - [SMALL_STATE(1689)] = 51165, - [SMALL_STATE(1690)] = 51172, - [SMALL_STATE(1691)] = 51179, - [SMALL_STATE(1692)] = 51186, - [SMALL_STATE(1693)] = 51193, - [SMALL_STATE(1694)] = 51200, - [SMALL_STATE(1695)] = 51207, - [SMALL_STATE(1696)] = 51214, - [SMALL_STATE(1697)] = 51221, - [SMALL_STATE(1698)] = 51228, - [SMALL_STATE(1699)] = 51235, - [SMALL_STATE(1700)] = 51242, - [SMALL_STATE(1701)] = 51249, - [SMALL_STATE(1702)] = 51256, - [SMALL_STATE(1703)] = 51263, - [SMALL_STATE(1704)] = 51270, - [SMALL_STATE(1705)] = 51277, - [SMALL_STATE(1706)] = 51284, - [SMALL_STATE(1707)] = 51291, - [SMALL_STATE(1708)] = 51298, - [SMALL_STATE(1709)] = 51305, - [SMALL_STATE(1710)] = 51312, - [SMALL_STATE(1711)] = 51319, - [SMALL_STATE(1712)] = 51326, - [SMALL_STATE(1713)] = 51333, - [SMALL_STATE(1714)] = 51340, - [SMALL_STATE(1715)] = 51347, - [SMALL_STATE(1716)] = 51354, - [SMALL_STATE(1717)] = 51361, - [SMALL_STATE(1718)] = 51368, - [SMALL_STATE(1719)] = 51375, - [SMALL_STATE(1720)] = 51382, - [SMALL_STATE(1721)] = 51389, - [SMALL_STATE(1722)] = 51396, - [SMALL_STATE(1723)] = 51403, - [SMALL_STATE(1724)] = 51410, - [SMALL_STATE(1725)] = 51417, - [SMALL_STATE(1726)] = 51424, - [SMALL_STATE(1727)] = 51431, - [SMALL_STATE(1728)] = 51438, - [SMALL_STATE(1729)] = 51445, - [SMALL_STATE(1730)] = 51452, - [SMALL_STATE(1731)] = 51459, - [SMALL_STATE(1732)] = 51466, - [SMALL_STATE(1733)] = 51473, - [SMALL_STATE(1734)] = 51480, - [SMALL_STATE(1735)] = 51487, - [SMALL_STATE(1736)] = 51494, - [SMALL_STATE(1737)] = 51501, - [SMALL_STATE(1738)] = 51508, - [SMALL_STATE(1739)] = 51515, - [SMALL_STATE(1740)] = 51522, - [SMALL_STATE(1741)] = 51529, - [SMALL_STATE(1742)] = 51536, - [SMALL_STATE(1743)] = 51543, - [SMALL_STATE(1744)] = 51550, - [SMALL_STATE(1745)] = 51557, - [SMALL_STATE(1746)] = 51564, - [SMALL_STATE(1747)] = 51571, - [SMALL_STATE(1748)] = 51578, - [SMALL_STATE(1749)] = 51585, - [SMALL_STATE(1750)] = 51592, - [SMALL_STATE(1751)] = 51599, - [SMALL_STATE(1752)] = 51606, - [SMALL_STATE(1753)] = 51613, - [SMALL_STATE(1754)] = 51620, - [SMALL_STATE(1755)] = 51627, - [SMALL_STATE(1756)] = 51634, - [SMALL_STATE(1757)] = 51641, - [SMALL_STATE(1758)] = 51648, - [SMALL_STATE(1759)] = 51655, - [SMALL_STATE(1760)] = 51662, - [SMALL_STATE(1761)] = 51669, - [SMALL_STATE(1762)] = 51676, - [SMALL_STATE(1763)] = 51683, - [SMALL_STATE(1764)] = 51690, - [SMALL_STATE(1765)] = 51697, - [SMALL_STATE(1766)] = 51704, - [SMALL_STATE(1767)] = 51711, - [SMALL_STATE(1768)] = 51718, - [SMALL_STATE(1769)] = 51725, - [SMALL_STATE(1770)] = 51732, - [SMALL_STATE(1771)] = 51739, - [SMALL_STATE(1772)] = 51746, - [SMALL_STATE(1773)] = 51753, - [SMALL_STATE(1774)] = 51760, - [SMALL_STATE(1775)] = 51767, - [SMALL_STATE(1776)] = 51774, - [SMALL_STATE(1777)] = 51781, - [SMALL_STATE(1778)] = 51788, - [SMALL_STATE(1779)] = 51795, - [SMALL_STATE(1780)] = 51802, - [SMALL_STATE(1781)] = 51809, - [SMALL_STATE(1782)] = 51816, - [SMALL_STATE(1783)] = 51823, - [SMALL_STATE(1784)] = 51830, - [SMALL_STATE(1785)] = 51837, - [SMALL_STATE(1786)] = 51844, - [SMALL_STATE(1787)] = 51851, - [SMALL_STATE(1788)] = 51858, - [SMALL_STATE(1789)] = 51865, - [SMALL_STATE(1790)] = 51872, - [SMALL_STATE(1791)] = 51879, - [SMALL_STATE(1792)] = 51886, - [SMALL_STATE(1793)] = 51893, - [SMALL_STATE(1794)] = 51900, - [SMALL_STATE(1795)] = 51907, - [SMALL_STATE(1796)] = 51914, - [SMALL_STATE(1797)] = 51921, - [SMALL_STATE(1798)] = 51928, - [SMALL_STATE(1799)] = 51935, - [SMALL_STATE(1800)] = 51942, - [SMALL_STATE(1801)] = 51949, - [SMALL_STATE(1802)] = 51956, - [SMALL_STATE(1803)] = 51963, - [SMALL_STATE(1804)] = 51970, - [SMALL_STATE(1805)] = 51977, - [SMALL_STATE(1806)] = 51984, - [SMALL_STATE(1807)] = 51991, - [SMALL_STATE(1808)] = 51998, - [SMALL_STATE(1809)] = 52005, - [SMALL_STATE(1810)] = 52012, - [SMALL_STATE(1811)] = 52019, - [SMALL_STATE(1812)] = 52026, - [SMALL_STATE(1813)] = 52033, - [SMALL_STATE(1814)] = 52040, - [SMALL_STATE(1815)] = 52047, - [SMALL_STATE(1816)] = 52054, - [SMALL_STATE(1817)] = 52061, - [SMALL_STATE(1818)] = 52068, - [SMALL_STATE(1819)] = 52075, - [SMALL_STATE(1820)] = 52082, - [SMALL_STATE(1821)] = 52089, - [SMALL_STATE(1822)] = 52096, - [SMALL_STATE(1823)] = 52103, - [SMALL_STATE(1824)] = 52110, - [SMALL_STATE(1825)] = 52117, - [SMALL_STATE(1826)] = 52124, - [SMALL_STATE(1827)] = 52131, - [SMALL_STATE(1828)] = 52138, - [SMALL_STATE(1829)] = 52145, - [SMALL_STATE(1830)] = 52152, - [SMALL_STATE(1831)] = 52159, - [SMALL_STATE(1832)] = 52166, - [SMALL_STATE(1833)] = 52173, - [SMALL_STATE(1834)] = 52180, - [SMALL_STATE(1835)] = 52187, - [SMALL_STATE(1836)] = 52194, - [SMALL_STATE(1837)] = 52201, - [SMALL_STATE(1838)] = 52208, - [SMALL_STATE(1839)] = 52215, - [SMALL_STATE(1840)] = 52222, - [SMALL_STATE(1841)] = 52229, - [SMALL_STATE(1842)] = 52236, - [SMALL_STATE(1843)] = 52243, - [SMALL_STATE(1844)] = 52250, - [SMALL_STATE(1845)] = 52257, - [SMALL_STATE(1846)] = 52264, - [SMALL_STATE(1847)] = 52271, - [SMALL_STATE(1848)] = 52278, - [SMALL_STATE(1849)] = 52285, - [SMALL_STATE(1850)] = 52292, - [SMALL_STATE(1851)] = 52299, - [SMALL_STATE(1852)] = 52306, - [SMALL_STATE(1853)] = 52313, - [SMALL_STATE(1854)] = 52320, - [SMALL_STATE(1855)] = 52327, - [SMALL_STATE(1856)] = 52334, - [SMALL_STATE(1857)] = 52341, - [SMALL_STATE(1858)] = 52348, - [SMALL_STATE(1859)] = 52355, - [SMALL_STATE(1860)] = 52362, - [SMALL_STATE(1861)] = 52369, - [SMALL_STATE(1862)] = 52376, - [SMALL_STATE(1863)] = 52383, - [SMALL_STATE(1864)] = 52390, - [SMALL_STATE(1865)] = 52397, - [SMALL_STATE(1866)] = 52404, - [SMALL_STATE(1867)] = 52411, - [SMALL_STATE(1868)] = 52418, - [SMALL_STATE(1869)] = 52425, - [SMALL_STATE(1870)] = 52432, - [SMALL_STATE(1871)] = 52439, - [SMALL_STATE(1872)] = 52446, - [SMALL_STATE(1873)] = 52453, - [SMALL_STATE(1874)] = 52460, - [SMALL_STATE(1875)] = 52467, - [SMALL_STATE(1876)] = 52474, - [SMALL_STATE(1877)] = 52481, - [SMALL_STATE(1878)] = 52488, + [SMALL_STATE(765)] = 20356, + [SMALL_STATE(766)] = 20419, + [SMALL_STATE(767)] = 20474, + [SMALL_STATE(768)] = 20525, + [SMALL_STATE(769)] = 20580, + [SMALL_STATE(770)] = 20635, + [SMALL_STATE(771)] = 20690, + [SMALL_STATE(772)] = 20741, + [SMALL_STATE(773)] = 20818, + [SMALL_STATE(774)] = 20889, + [SMALL_STATE(775)] = 20940, + [SMALL_STATE(776)] = 20991, + [SMALL_STATE(777)] = 21054, + [SMALL_STATE(778)] = 21117, + [SMALL_STATE(779)] = 21178, + [SMALL_STATE(780)] = 21263, + [SMALL_STATE(781)] = 21318, + [SMALL_STATE(782)] = 21373, + [SMALL_STATE(783)] = 21434, + [SMALL_STATE(784)] = 21489, + [SMALL_STATE(785)] = 21540, + [SMALL_STATE(786)] = 21625, + [SMALL_STATE(787)] = 21680, + [SMALL_STATE(788)] = 21731, + [SMALL_STATE(789)] = 21786, + [SMALL_STATE(790)] = 21861, + [SMALL_STATE(791)] = 21912, + [SMALL_STATE(792)] = 21991, + [SMALL_STATE(793)] = 22056, + [SMALL_STATE(794)] = 22107, + [SMALL_STATE(795)] = 22162, + [SMALL_STATE(796)] = 22213, + [SMALL_STATE(797)] = 22280, + [SMALL_STATE(798)] = 22335, + [SMALL_STATE(799)] = 22386, + [SMALL_STATE(800)] = 22437, + [SMALL_STATE(801)] = 22496, + [SMALL_STATE(802)] = 22547, + [SMALL_STATE(803)] = 22620, + [SMALL_STATE(804)] = 22683, + [SMALL_STATE(805)] = 22764, + [SMALL_STATE(806)] = 22825, + [SMALL_STATE(807)] = 22876, + [SMALL_STATE(808)] = 22927, + [SMALL_STATE(809)] = 22988, + [SMALL_STATE(810)] = 23038, + [SMALL_STATE(811)] = 23088, + [SMALL_STATE(812)] = 23138, + [SMALL_STATE(813)] = 23218, + [SMALL_STATE(814)] = 23268, + [SMALL_STATE(815)] = 23322, + [SMALL_STATE(816)] = 23380, + [SMALL_STATE(817)] = 23430, + [SMALL_STATE(818)] = 23480, + [SMALL_STATE(819)] = 23530, + [SMALL_STATE(820)] = 23580, + [SMALL_STATE(821)] = 23630, + [SMALL_STATE(822)] = 23680, + [SMALL_STATE(823)] = 23730, + [SMALL_STATE(824)] = 23780, + [SMALL_STATE(825)] = 23830, + [SMALL_STATE(826)] = 23882, + [SMALL_STATE(827)] = 23962, + [SMALL_STATE(828)] = 24012, + [SMALL_STATE(829)] = 24062, + [SMALL_STATE(830)] = 24142, + [SMALL_STATE(831)] = 24192, + [SMALL_STATE(832)] = 24242, + [SMALL_STATE(833)] = 24292, + [SMALL_STATE(834)] = 24342, + [SMALL_STATE(835)] = 24392, + [SMALL_STATE(836)] = 24442, + [SMALL_STATE(837)] = 24492, + [SMALL_STATE(838)] = 24542, + [SMALL_STATE(839)] = 24592, + [SMALL_STATE(840)] = 24642, + [SMALL_STATE(841)] = 24692, + [SMALL_STATE(842)] = 24742, + [SMALL_STATE(843)] = 24822, + [SMALL_STATE(844)] = 24902, + [SMALL_STATE(845)] = 24952, + [SMALL_STATE(846)] = 25032, + [SMALL_STATE(847)] = 25082, + [SMALL_STATE(848)] = 25132, + [SMALL_STATE(849)] = 25181, + [SMALL_STATE(850)] = 25230, + [SMALL_STATE(851)] = 25279, + [SMALL_STATE(852)] = 25328, + [SMALL_STATE(853)] = 25377, + [SMALL_STATE(854)] = 25426, + [SMALL_STATE(855)] = 25475, + [SMALL_STATE(856)] = 25524, + [SMALL_STATE(857)] = 25573, + [SMALL_STATE(858)] = 25622, + [SMALL_STATE(859)] = 25671, + [SMALL_STATE(860)] = 25720, + [SMALL_STATE(861)] = 25769, + [SMALL_STATE(862)] = 25818, + [SMALL_STATE(863)] = 25867, + [SMALL_STATE(864)] = 25916, + [SMALL_STATE(865)] = 25965, + [SMALL_STATE(866)] = 26014, + [SMALL_STATE(867)] = 26076, + [SMALL_STATE(868)] = 26138, + [SMALL_STATE(869)] = 26196, + [SMALL_STATE(870)] = 26258, + [SMALL_STATE(871)] = 26320, + [SMALL_STATE(872)] = 26382, + [SMALL_STATE(873)] = 26437, + [SMALL_STATE(874)] = 26484, + [SMALL_STATE(875)] = 26531, + [SMALL_STATE(876)] = 26578, + [SMALL_STATE(877)] = 26631, + [SMALL_STATE(878)] = 26684, + [SMALL_STATE(879)] = 26731, + [SMALL_STATE(880)] = 26778, + [SMALL_STATE(881)] = 26825, + [SMALL_STATE(882)] = 26872, + [SMALL_STATE(883)] = 26919, + [SMALL_STATE(884)] = 26966, + [SMALL_STATE(885)] = 27013, + [SMALL_STATE(886)] = 27060, + [SMALL_STATE(887)] = 27107, + [SMALL_STATE(888)] = 27154, + [SMALL_STATE(889)] = 27201, + [SMALL_STATE(890)] = 27248, + [SMALL_STATE(891)] = 27295, + [SMALL_STATE(892)] = 27342, + [SMALL_STATE(893)] = 27389, + [SMALL_STATE(894)] = 27465, + [SMALL_STATE(895)] = 27523, + [SMALL_STATE(896)] = 27579, + [SMALL_STATE(897)] = 27635, + [SMALL_STATE(898)] = 27715, + [SMALL_STATE(899)] = 27789, + [SMALL_STATE(900)] = 27845, + [SMALL_STATE(901)] = 27917, + [SMALL_STATE(902)] = 27973, + [SMALL_STATE(903)] = 28043, + [SMALL_STATE(904)] = 28117, + [SMALL_STATE(905)] = 28163, + [SMALL_STATE(906)] = 28231, + [SMALL_STATE(907)] = 28297, + [SMALL_STATE(908)] = 28353, + [SMALL_STATE(909)] = 28415, + [SMALL_STATE(910)] = 28469, + [SMALL_STATE(911)] = 28529, + [SMALL_STATE(912)] = 28609, + [SMALL_STATE(913)] = 28689, + [SMALL_STATE(914)] = 28735, + [SMALL_STATE(915)] = 28780, + [SMALL_STATE(916)] = 28851, + [SMALL_STATE(917)] = 28900, + [SMALL_STATE(918)] = 28945, + [SMALL_STATE(919)] = 28990, + [SMALL_STATE(920)] = 29035, + [SMALL_STATE(921)] = 29080, + [SMALL_STATE(922)] = 29151, + [SMALL_STATE(923)] = 29222, + [SMALL_STATE(924)] = 29267, + [SMALL_STATE(925)] = 29338, + [SMALL_STATE(926)] = 29383, + [SMALL_STATE(927)] = 29428, + [SMALL_STATE(928)] = 29473, + [SMALL_STATE(929)] = 29518, + [SMALL_STATE(930)] = 29567, + [SMALL_STATE(931)] = 29616, + [SMALL_STATE(932)] = 29661, + [SMALL_STATE(933)] = 29706, + [SMALL_STATE(934)] = 29751, + [SMALL_STATE(935)] = 29796, + [SMALL_STATE(936)] = 29841, + [SMALL_STATE(937)] = 29886, + [SMALL_STATE(938)] = 29957, + [SMALL_STATE(939)] = 30002, + [SMALL_STATE(940)] = 30047, + [SMALL_STATE(941)] = 30118, + [SMALL_STATE(942)] = 30189, + [SMALL_STATE(943)] = 30260, + [SMALL_STATE(944)] = 30305, + [SMALL_STATE(945)] = 30354, + [SMALL_STATE(946)] = 30399, + [SMALL_STATE(947)] = 30448, + [SMALL_STATE(948)] = 30497, + [SMALL_STATE(949)] = 30542, + [SMALL_STATE(950)] = 30587, + [SMALL_STATE(951)] = 30632, + [SMALL_STATE(952)] = 30677, + [SMALL_STATE(953)] = 30722, + [SMALL_STATE(954)] = 30793, + [SMALL_STATE(955)] = 30838, + [SMALL_STATE(956)] = 30883, + [SMALL_STATE(957)] = 30928, + [SMALL_STATE(958)] = 30973, + [SMALL_STATE(959)] = 31018, + [SMALL_STATE(960)] = 31067, + [SMALL_STATE(961)] = 31112, + [SMALL_STATE(962)] = 31157, + [SMALL_STATE(963)] = 31202, + [SMALL_STATE(964)] = 31251, + [SMALL_STATE(965)] = 31296, + [SMALL_STATE(966)] = 31367, + [SMALL_STATE(967)] = 31438, + [SMALL_STATE(968)] = 31483, + [SMALL_STATE(969)] = 31528, + [SMALL_STATE(970)] = 31599, + [SMALL_STATE(971)] = 31644, + [SMALL_STATE(972)] = 31689, + [SMALL_STATE(973)] = 31734, + [SMALL_STATE(974)] = 31783, + [SMALL_STATE(975)] = 31828, + [SMALL_STATE(976)] = 31880, + [SMALL_STATE(977)] = 31924, + [SMALL_STATE(978)] = 31973, + [SMALL_STATE(979)] = 32020, + [SMALL_STATE(980)] = 32084, + [SMALL_STATE(981)] = 32148, + [SMALL_STATE(982)] = 32212, + [SMALL_STATE(983)] = 32276, + [SMALL_STATE(984)] = 32321, + [SMALL_STATE(985)] = 32395, + [SMALL_STATE(986)] = 32459, + [SMALL_STATE(987)] = 32499, + [SMALL_STATE(988)] = 32541, + [SMALL_STATE(989)] = 32589, + [SMALL_STATE(990)] = 32631, + [SMALL_STATE(991)] = 32705, + [SMALL_STATE(992)] = 32747, + [SMALL_STATE(993)] = 32789, + [SMALL_STATE(994)] = 32829, + [SMALL_STATE(995)] = 32879, + [SMALL_STATE(996)] = 32921, + [SMALL_STATE(997)] = 32995, + [SMALL_STATE(998)] = 33043, + [SMALL_STATE(999)] = 33083, + [SMALL_STATE(1000)] = 33123, + [SMALL_STATE(1001)] = 33163, + [SMALL_STATE(1002)] = 33219, + [SMALL_STATE(1003)] = 33273, + [SMALL_STATE(1004)] = 33343, + [SMALL_STATE(1005)] = 33411, + [SMALL_STATE(1006)] = 33479, + [SMALL_STATE(1007)] = 33545, + [SMALL_STATE(1008)] = 33603, + [SMALL_STATE(1009)] = 33665, + [SMALL_STATE(1010)] = 33707, + [SMALL_STATE(1011)] = 33749, + [SMALL_STATE(1012)] = 33791, + [SMALL_STATE(1013)] = 33846, + [SMALL_STATE(1014)] = 33901, + [SMALL_STATE(1015)] = 33976, + [SMALL_STATE(1016)] = 34051, + [SMALL_STATE(1017)] = 34106, + [SMALL_STATE(1018)] = 34161, + [SMALL_STATE(1019)] = 34216, + [SMALL_STATE(1020)] = 34271, + [SMALL_STATE(1021)] = 34326, + [SMALL_STATE(1022)] = 34401, + [SMALL_STATE(1023)] = 34476, + [SMALL_STATE(1024)] = 34531, + [SMALL_STATE(1025)] = 34568, + [SMALL_STATE(1026)] = 34605, + [SMALL_STATE(1027)] = 34680, + [SMALL_STATE(1028)] = 34751, + [SMALL_STATE(1029)] = 34824, + [SMALL_STATE(1030)] = 34899, + [SMALL_STATE(1031)] = 34971, + [SMALL_STATE(1032)] = 35043, + [SMALL_STATE(1033)] = 35113, + [SMALL_STATE(1034)] = 35183, + [SMALL_STATE(1035)] = 35239, + [SMALL_STATE(1036)] = 35311, + [SMALL_STATE(1037)] = 35383, + [SMALL_STATE(1038)] = 35455, + [SMALL_STATE(1039)] = 35511, + [SMALL_STATE(1040)] = 35567, + [SMALL_STATE(1041)] = 35639, + [SMALL_STATE(1042)] = 35711, + [SMALL_STATE(1043)] = 35767, + [SMALL_STATE(1044)] = 35823, + [SMALL_STATE(1045)] = 35895, + [SMALL_STATE(1046)] = 35967, + [SMALL_STATE(1047)] = 36039, + [SMALL_STATE(1048)] = 36109, + [SMALL_STATE(1049)] = 36179, + [SMALL_STATE(1050)] = 36249, + [SMALL_STATE(1051)] = 36321, + [SMALL_STATE(1052)] = 36391, + [SMALL_STATE(1053)] = 36447, + [SMALL_STATE(1054)] = 36503, + [SMALL_STATE(1055)] = 36575, + [SMALL_STATE(1056)] = 36647, + [SMALL_STATE(1057)] = 36719, + [SMALL_STATE(1058)] = 36791, + [SMALL_STATE(1059)] = 36847, + [SMALL_STATE(1060)] = 36903, + [SMALL_STATE(1061)] = 36959, + [SMALL_STATE(1062)] = 37015, + [SMALL_STATE(1063)] = 37087, + [SMALL_STATE(1064)] = 37159, + [SMALL_STATE(1065)] = 37231, + [SMALL_STATE(1066)] = 37287, + [SMALL_STATE(1067)] = 37359, + [SMALL_STATE(1068)] = 37431, + [SMALL_STATE(1069)] = 37487, + [SMALL_STATE(1070)] = 37543, + [SMALL_STATE(1071)] = 37615, + [SMALL_STATE(1072)] = 37685, + [SMALL_STATE(1073)] = 37741, + [SMALL_STATE(1074)] = 37813, + [SMALL_STATE(1075)] = 37872, + [SMALL_STATE(1076)] = 37941, + [SMALL_STATE(1077)] = 38002, + [SMALL_STATE(1078)] = 38071, + [SMALL_STATE(1079)] = 38130, + [SMALL_STATE(1080)] = 38199, + [SMALL_STATE(1081)] = 38268, + [SMALL_STATE(1082)] = 38337, + [SMALL_STATE(1083)] = 38406, + [SMALL_STATE(1084)] = 38475, + [SMALL_STATE(1085)] = 38532, + [SMALL_STATE(1086)] = 38601, + [SMALL_STATE(1087)] = 38670, + [SMALL_STATE(1088)] = 38739, + [SMALL_STATE(1089)] = 38792, + [SMALL_STATE(1090)] = 38845, + [SMALL_STATE(1091)] = 38896, + [SMALL_STATE(1092)] = 38959, + [SMALL_STATE(1093)] = 39028, + [SMALL_STATE(1094)] = 39091, + [SMALL_STATE(1095)] = 39156, + [SMALL_STATE(1096)] = 39225, + [SMALL_STATE(1097)] = 39294, + [SMALL_STATE(1098)] = 39363, + [SMALL_STATE(1099)] = 39432, + [SMALL_STATE(1100)] = 39501, + [SMALL_STATE(1101)] = 39550, + [SMALL_STATE(1102)] = 39619, + [SMALL_STATE(1103)] = 39688, + [SMALL_STATE(1104)] = 39757, + [SMALL_STATE(1105)] = 39826, + [SMALL_STATE(1106)] = 39895, + [SMALL_STATE(1107)] = 39948, + [SMALL_STATE(1108)] = 40017, + [SMALL_STATE(1109)] = 40086, + [SMALL_STATE(1110)] = 40155, + [SMALL_STATE(1111)] = 40224, + [SMALL_STATE(1112)] = 40277, + [SMALL_STATE(1113)] = 40346, + [SMALL_STATE(1114)] = 40415, + [SMALL_STATE(1115)] = 40484, + [SMALL_STATE(1116)] = 40522, + [SMALL_STATE(1117)] = 40560, + [SMALL_STATE(1118)] = 40598, + [SMALL_STATE(1119)] = 40636, + [SMALL_STATE(1120)] = 40672, + [SMALL_STATE(1121)] = 40738, + [SMALL_STATE(1122)] = 40779, + [SMALL_STATE(1123)] = 40831, + [SMALL_STATE(1124)] = 40883, + [SMALL_STATE(1125)] = 40935, + [SMALL_STATE(1126)] = 40987, + [SMALL_STATE(1127)] = 41039, + [SMALL_STATE(1128)] = 41091, + [SMALL_STATE(1129)] = 41143, + [SMALL_STATE(1130)] = 41195, + [SMALL_STATE(1131)] = 41247, + [SMALL_STATE(1132)] = 41299, + [SMALL_STATE(1133)] = 41346, + [SMALL_STATE(1134)] = 41393, + [SMALL_STATE(1135)] = 41440, + [SMALL_STATE(1136)] = 41489, + [SMALL_STATE(1137)] = 41536, + [SMALL_STATE(1138)] = 41585, + [SMALL_STATE(1139)] = 41632, + [SMALL_STATE(1140)] = 41679, + [SMALL_STATE(1141)] = 41731, + [SMALL_STATE(1142)] = 41783, + [SMALL_STATE(1143)] = 41821, + [SMALL_STATE(1144)] = 41855, + [SMALL_STATE(1145)] = 41907, + [SMALL_STATE(1146)] = 41959, + [SMALL_STATE(1147)] = 42002, + [SMALL_STATE(1148)] = 42051, + [SMALL_STATE(1149)] = 42100, + [SMALL_STATE(1150)] = 42149, + [SMALL_STATE(1151)] = 42204, + [SMALL_STATE(1152)] = 42253, + [SMALL_STATE(1153)] = 42286, + [SMALL_STATE(1154)] = 42341, + [SMALL_STATE(1155)] = 42384, + [SMALL_STATE(1156)] = 42427, + [SMALL_STATE(1157)] = 42482, + [SMALL_STATE(1158)] = 42531, + [SMALL_STATE(1159)] = 42571, + [SMALL_STATE(1160)] = 42611, + [SMALL_STATE(1161)] = 42657, + [SMALL_STATE(1162)] = 42697, + [SMALL_STATE(1163)] = 42737, + [SMALL_STATE(1164)] = 42777, + [SMALL_STATE(1165)] = 42817, + [SMALL_STATE(1166)] = 42857, + [SMALL_STATE(1167)] = 42897, + [SMALL_STATE(1168)] = 42947, + [SMALL_STATE(1169)] = 42975, + [SMALL_STATE(1170)] = 43015, + [SMALL_STATE(1171)] = 43055, + [SMALL_STATE(1172)] = 43095, + [SMALL_STATE(1173)] = 43135, + [SMALL_STATE(1174)] = 43175, + [SMALL_STATE(1175)] = 43215, + [SMALL_STATE(1176)] = 43255, + [SMALL_STATE(1177)] = 43283, + [SMALL_STATE(1178)] = 43317, + [SMALL_STATE(1179)] = 43357, + [SMALL_STATE(1180)] = 43393, + [SMALL_STATE(1181)] = 43433, + [SMALL_STATE(1182)] = 43475, + [SMALL_STATE(1183)] = 43519, + [SMALL_STATE(1184)] = 43559, + [SMALL_STATE(1185)] = 43605, + [SMALL_STATE(1186)] = 43651, + [SMALL_STATE(1187)] = 43697, + [SMALL_STATE(1188)] = 43745, + [SMALL_STATE(1189)] = 43773, + [SMALL_STATE(1190)] = 43805, + [SMALL_STATE(1191)] = 43845, + [SMALL_STATE(1192)] = 43873, + [SMALL_STATE(1193)] = 43919, + [SMALL_STATE(1194)] = 43965, + [SMALL_STATE(1195)] = 43993, + [SMALL_STATE(1196)] = 44033, + [SMALL_STATE(1197)] = 44073, + [SMALL_STATE(1198)] = 44113, + [SMALL_STATE(1199)] = 44153, + [SMALL_STATE(1200)] = 44193, + [SMALL_STATE(1201)] = 44233, + [SMALL_STATE(1202)] = 44273, + [SMALL_STATE(1203)] = 44319, + [SMALL_STATE(1204)] = 44365, + [SMALL_STATE(1205)] = 44393, + [SMALL_STATE(1206)] = 44439, + [SMALL_STATE(1207)] = 44479, + [SMALL_STATE(1208)] = 44519, + [SMALL_STATE(1209)] = 44559, + [SMALL_STATE(1210)] = 44599, + [SMALL_STATE(1211)] = 44639, + [SMALL_STATE(1212)] = 44679, + [SMALL_STATE(1213)] = 44719, + [SMALL_STATE(1214)] = 44759, + [SMALL_STATE(1215)] = 44787, + [SMALL_STATE(1216)] = 44815, + [SMALL_STATE(1217)] = 44861, + [SMALL_STATE(1218)] = 44901, + [SMALL_STATE(1219)] = 44929, + [SMALL_STATE(1220)] = 44975, + [SMALL_STATE(1221)] = 45021, + [SMALL_STATE(1222)] = 45061, + [SMALL_STATE(1223)] = 45101, + [SMALL_STATE(1224)] = 45147, + [SMALL_STATE(1225)] = 45193, + [SMALL_STATE(1226)] = 45221, + [SMALL_STATE(1227)] = 45252, + [SMALL_STATE(1228)] = 45297, + [SMALL_STATE(1229)] = 45342, + [SMALL_STATE(1230)] = 45387, + [SMALL_STATE(1231)] = 45430, + [SMALL_STATE(1232)] = 45473, + [SMALL_STATE(1233)] = 45500, + [SMALL_STATE(1234)] = 45545, + [SMALL_STATE(1235)] = 45590, + [SMALL_STATE(1236)] = 45617, + [SMALL_STATE(1237)] = 45660, + [SMALL_STATE(1238)] = 45703, + [SMALL_STATE(1239)] = 45730, + [SMALL_STATE(1240)] = 45779, + [SMALL_STATE(1241)] = 45824, + [SMALL_STATE(1242)] = 45869, + [SMALL_STATE(1243)] = 45896, + [SMALL_STATE(1244)] = 45923, + [SMALL_STATE(1245)] = 45966, + [SMALL_STATE(1246)] = 46005, + [SMALL_STATE(1247)] = 46032, + [SMALL_STATE(1248)] = 46059, + [SMALL_STATE(1249)] = 46104, + [SMALL_STATE(1250)] = 46149, + [SMALL_STATE(1251)] = 46176, + [SMALL_STATE(1252)] = 46205, + [SMALL_STATE(1253)] = 46254, + [SMALL_STATE(1254)] = 46299, + [SMALL_STATE(1255)] = 46342, + [SMALL_STATE(1256)] = 46369, + [SMALL_STATE(1257)] = 46414, + [SMALL_STATE(1258)] = 46457, + [SMALL_STATE(1259)] = 46498, + [SMALL_STATE(1260)] = 46531, + [SMALL_STATE(1261)] = 46558, + [SMALL_STATE(1262)] = 46603, + [SMALL_STATE(1263)] = 46638, + [SMALL_STATE(1264)] = 46675, + [SMALL_STATE(1265)] = 46715, + [SMALL_STATE(1266)] = 46755, + [SMALL_STATE(1267)] = 46795, + [SMALL_STATE(1268)] = 46835, + [SMALL_STATE(1269)] = 46875, + [SMALL_STATE(1270)] = 46915, + [SMALL_STATE(1271)] = 46955, + [SMALL_STATE(1272)] = 46995, + [SMALL_STATE(1273)] = 47030, + [SMALL_STATE(1274)] = 47078, + [SMALL_STATE(1275)] = 47126, + [SMALL_STATE(1276)] = 47174, + [SMALL_STATE(1277)] = 47222, + [SMALL_STATE(1278)] = 47270, + [SMALL_STATE(1279)] = 47315, + [SMALL_STATE(1280)] = 47360, + [SMALL_STATE(1281)] = 47405, + [SMALL_STATE(1282)] = 47450, + [SMALL_STATE(1283)] = 47495, + [SMALL_STATE(1284)] = 47521, + [SMALL_STATE(1285)] = 47551, + [SMALL_STATE(1286)] = 47576, + [SMALL_STATE(1287)] = 47601, + [SMALL_STATE(1288)] = 47626, + [SMALL_STATE(1289)] = 47655, + [SMALL_STATE(1290)] = 47684, + [SMALL_STATE(1291)] = 47723, + [SMALL_STATE(1292)] = 47752, + [SMALL_STATE(1293)] = 47781, + [SMALL_STATE(1294)] = 47810, + [SMALL_STATE(1295)] = 47835, + [SMALL_STATE(1296)] = 47855, + [SMALL_STATE(1297)] = 47875, + [SMALL_STATE(1298)] = 47895, + [SMALL_STATE(1299)] = 47931, + [SMALL_STATE(1300)] = 47955, + [SMALL_STATE(1301)] = 47989, + [SMALL_STATE(1302)] = 48020, + [SMALL_STATE(1303)] = 48047, + [SMALL_STATE(1304)] = 48074, + [SMALL_STATE(1305)] = 48101, + [SMALL_STATE(1306)] = 48128, + [SMALL_STATE(1307)] = 48155, + [SMALL_STATE(1308)] = 48181, + [SMALL_STATE(1309)] = 48199, + [SMALL_STATE(1310)] = 48217, + [SMALL_STATE(1311)] = 48243, + [SMALL_STATE(1312)] = 48269, + [SMALL_STATE(1313)] = 48295, + [SMALL_STATE(1314)] = 48321, + [SMALL_STATE(1315)] = 48345, + [SMALL_STATE(1316)] = 48369, + [SMALL_STATE(1317)] = 48399, + [SMALL_STATE(1318)] = 48417, + [SMALL_STATE(1319)] = 48435, + [SMALL_STATE(1320)] = 48453, + [SMALL_STATE(1321)] = 48471, + [SMALL_STATE(1322)] = 48493, + [SMALL_STATE(1323)] = 48516, + [SMALL_STATE(1324)] = 48541, + [SMALL_STATE(1325)] = 48562, + [SMALL_STATE(1326)] = 48583, + [SMALL_STATE(1327)] = 48612, + [SMALL_STATE(1328)] = 48635, + [SMALL_STATE(1329)] = 48656, + [SMALL_STATE(1330)] = 48685, + [SMALL_STATE(1331)] = 48706, + [SMALL_STATE(1332)] = 48727, + [SMALL_STATE(1333)] = 48756, + [SMALL_STATE(1334)] = 48777, + [SMALL_STATE(1335)] = 48806, + [SMALL_STATE(1336)] = 48835, + [SMALL_STATE(1337)] = 48851, + [SMALL_STATE(1338)] = 48867, + [SMALL_STATE(1339)] = 48887, + [SMALL_STATE(1340)] = 48905, + [SMALL_STATE(1341)] = 48931, + [SMALL_STATE(1342)] = 48947, + [SMALL_STATE(1343)] = 48967, + [SMALL_STATE(1344)] = 48983, + [SMALL_STATE(1345)] = 49007, + [SMALL_STATE(1346)] = 49025, + [SMALL_STATE(1347)] = 49043, + [SMALL_STATE(1348)] = 49069, + [SMALL_STATE(1349)] = 49089, + [SMALL_STATE(1350)] = 49115, + [SMALL_STATE(1351)] = 49141, + [SMALL_STATE(1352)] = 49167, + [SMALL_STATE(1353)] = 49183, + [SMALL_STATE(1354)] = 49203, + [SMALL_STATE(1355)] = 49219, + [SMALL_STATE(1356)] = 49235, + [SMALL_STATE(1357)] = 49251, + [SMALL_STATE(1358)] = 49269, + [SMALL_STATE(1359)] = 49284, + [SMALL_STATE(1360)] = 49297, + [SMALL_STATE(1361)] = 49322, + [SMALL_STATE(1362)] = 49337, + [SMALL_STATE(1363)] = 49352, + [SMALL_STATE(1364)] = 49367, + [SMALL_STATE(1365)] = 49390, + [SMALL_STATE(1366)] = 49405, + [SMALL_STATE(1367)] = 49428, + [SMALL_STATE(1368)] = 49451, + [SMALL_STATE(1369)] = 49466, + [SMALL_STATE(1370)] = 49481, + [SMALL_STATE(1371)] = 49496, + [SMALL_STATE(1372)] = 49511, + [SMALL_STATE(1373)] = 49529, + [SMALL_STATE(1374)] = 49545, + [SMALL_STATE(1375)] = 49563, + [SMALL_STATE(1376)] = 49581, + [SMALL_STATE(1377)] = 49599, + [SMALL_STATE(1378)] = 49613, + [SMALL_STATE(1379)] = 49629, + [SMALL_STATE(1380)] = 49647, + [SMALL_STATE(1381)] = 49665, + [SMALL_STATE(1382)] = 49681, + [SMALL_STATE(1383)] = 49695, + [SMALL_STATE(1384)] = 49713, + [SMALL_STATE(1385)] = 49727, + [SMALL_STATE(1386)] = 49745, + [SMALL_STATE(1387)] = 49759, + [SMALL_STATE(1388)] = 49770, + [SMALL_STATE(1389)] = 49781, + [SMALL_STATE(1390)] = 49800, + [SMALL_STATE(1391)] = 49817, + [SMALL_STATE(1392)] = 49828, + [SMALL_STATE(1393)] = 49847, + [SMALL_STATE(1394)] = 49858, + [SMALL_STATE(1395)] = 49869, + [SMALL_STATE(1396)] = 49880, + [SMALL_STATE(1397)] = 49891, + [SMALL_STATE(1398)] = 49902, + [SMALL_STATE(1399)] = 49913, + [SMALL_STATE(1400)] = 49930, + [SMALL_STATE(1401)] = 49941, + [SMALL_STATE(1402)] = 49952, + [SMALL_STATE(1403)] = 49963, + [SMALL_STATE(1404)] = 49977, + [SMALL_STATE(1405)] = 49993, + [SMALL_STATE(1406)] = 50007, + [SMALL_STATE(1407)] = 50021, + [SMALL_STATE(1408)] = 50035, + [SMALL_STATE(1409)] = 50049, + [SMALL_STATE(1410)] = 50065, + [SMALL_STATE(1411)] = 50075, + [SMALL_STATE(1412)] = 50089, + [SMALL_STATE(1413)] = 50103, + [SMALL_STATE(1414)] = 50119, + [SMALL_STATE(1415)] = 50135, + [SMALL_STATE(1416)] = 50149, + [SMALL_STATE(1417)] = 50163, + [SMALL_STATE(1418)] = 50177, + [SMALL_STATE(1419)] = 50191, + [SMALL_STATE(1420)] = 50205, + [SMALL_STATE(1421)] = 50219, + [SMALL_STATE(1422)] = 50235, + [SMALL_STATE(1423)] = 50251, + [SMALL_STATE(1424)] = 50267, + [SMALL_STATE(1425)] = 50283, + [SMALL_STATE(1426)] = 50299, + [SMALL_STATE(1427)] = 50313, + [SMALL_STATE(1428)] = 50327, + [SMALL_STATE(1429)] = 50341, + [SMALL_STATE(1430)] = 50355, + [SMALL_STATE(1431)] = 50369, + [SMALL_STATE(1432)] = 50385, + [SMALL_STATE(1433)] = 50401, + [SMALL_STATE(1434)] = 50415, + [SMALL_STATE(1435)] = 50429, + [SMALL_STATE(1436)] = 50443, + [SMALL_STATE(1437)] = 50457, + [SMALL_STATE(1438)] = 50471, + [SMALL_STATE(1439)] = 50485, + [SMALL_STATE(1440)] = 50499, + [SMALL_STATE(1441)] = 50515, + [SMALL_STATE(1442)] = 50529, + [SMALL_STATE(1443)] = 50545, + [SMALL_STATE(1444)] = 50561, + [SMALL_STATE(1445)] = 50577, + [SMALL_STATE(1446)] = 50591, + [SMALL_STATE(1447)] = 50605, + [SMALL_STATE(1448)] = 50621, + [SMALL_STATE(1449)] = 50637, + [SMALL_STATE(1450)] = 50651, + [SMALL_STATE(1451)] = 50667, + [SMALL_STATE(1452)] = 50681, + [SMALL_STATE(1453)] = 50695, + [SMALL_STATE(1454)] = 50709, + [SMALL_STATE(1455)] = 50723, + [SMALL_STATE(1456)] = 50737, + [SMALL_STATE(1457)] = 50751, + [SMALL_STATE(1458)] = 50765, + [SMALL_STATE(1459)] = 50779, + [SMALL_STATE(1460)] = 50793, + [SMALL_STATE(1461)] = 50809, + [SMALL_STATE(1462)] = 50823, + [SMALL_STATE(1463)] = 50837, + [SMALL_STATE(1464)] = 50851, + [SMALL_STATE(1465)] = 50865, + [SMALL_STATE(1466)] = 50878, + [SMALL_STATE(1467)] = 50887, + [SMALL_STATE(1468)] = 50900, + [SMALL_STATE(1469)] = 50913, + [SMALL_STATE(1470)] = 50926, + [SMALL_STATE(1471)] = 50939, + [SMALL_STATE(1472)] = 50952, + [SMALL_STATE(1473)] = 50965, + [SMALL_STATE(1474)] = 50978, + [SMALL_STATE(1475)] = 50991, + [SMALL_STATE(1476)] = 51002, + [SMALL_STATE(1477)] = 51015, + [SMALL_STATE(1478)] = 51028, + [SMALL_STATE(1479)] = 51039, + [SMALL_STATE(1480)] = 51052, + [SMALL_STATE(1481)] = 51065, + [SMALL_STATE(1482)] = 51078, + [SMALL_STATE(1483)] = 51091, + [SMALL_STATE(1484)] = 51104, + [SMALL_STATE(1485)] = 51117, + [SMALL_STATE(1486)] = 51130, + [SMALL_STATE(1487)] = 51143, + [SMALL_STATE(1488)] = 51156, + [SMALL_STATE(1489)] = 51169, + [SMALL_STATE(1490)] = 51182, + [SMALL_STATE(1491)] = 51195, + [SMALL_STATE(1492)] = 51208, + [SMALL_STATE(1493)] = 51221, + [SMALL_STATE(1494)] = 51234, + [SMALL_STATE(1495)] = 51247, + [SMALL_STATE(1496)] = 51260, + [SMALL_STATE(1497)] = 51273, + [SMALL_STATE(1498)] = 51286, + [SMALL_STATE(1499)] = 51299, + [SMALL_STATE(1500)] = 51312, + [SMALL_STATE(1501)] = 51325, + [SMALL_STATE(1502)] = 51338, + [SMALL_STATE(1503)] = 51351, + [SMALL_STATE(1504)] = 51364, + [SMALL_STATE(1505)] = 51377, + [SMALL_STATE(1506)] = 51390, + [SMALL_STATE(1507)] = 51403, + [SMALL_STATE(1508)] = 51416, + [SMALL_STATE(1509)] = 51429, + [SMALL_STATE(1510)] = 51442, + [SMALL_STATE(1511)] = 51455, + [SMALL_STATE(1512)] = 51468, + [SMALL_STATE(1513)] = 51481, + [SMALL_STATE(1514)] = 51494, + [SMALL_STATE(1515)] = 51507, + [SMALL_STATE(1516)] = 51520, + [SMALL_STATE(1517)] = 51529, + [SMALL_STATE(1518)] = 51542, + [SMALL_STATE(1519)] = 51555, + [SMALL_STATE(1520)] = 51568, + [SMALL_STATE(1521)] = 51581, + [SMALL_STATE(1522)] = 51594, + [SMALL_STATE(1523)] = 51607, + [SMALL_STATE(1524)] = 51620, + [SMALL_STATE(1525)] = 51629, + [SMALL_STATE(1526)] = 51642, + [SMALL_STATE(1527)] = 51655, + [SMALL_STATE(1528)] = 51668, + [SMALL_STATE(1529)] = 51677, + [SMALL_STATE(1530)] = 51686, + [SMALL_STATE(1531)] = 51699, + [SMALL_STATE(1532)] = 51712, + [SMALL_STATE(1533)] = 51725, + [SMALL_STATE(1534)] = 51738, + [SMALL_STATE(1535)] = 51747, + [SMALL_STATE(1536)] = 51760, + [SMALL_STATE(1537)] = 51773, + [SMALL_STATE(1538)] = 51786, + [SMALL_STATE(1539)] = 51795, + [SMALL_STATE(1540)] = 51804, + [SMALL_STATE(1541)] = 51817, + [SMALL_STATE(1542)] = 51826, + [SMALL_STATE(1543)] = 51839, + [SMALL_STATE(1544)] = 51852, + [SMALL_STATE(1545)] = 51865, + [SMALL_STATE(1546)] = 51874, + [SMALL_STATE(1547)] = 51884, + [SMALL_STATE(1548)] = 51892, + [SMALL_STATE(1549)] = 51902, + [SMALL_STATE(1550)] = 51912, + [SMALL_STATE(1551)] = 51922, + [SMALL_STATE(1552)] = 51932, + [SMALL_STATE(1553)] = 51942, + [SMALL_STATE(1554)] = 51950, + [SMALL_STATE(1555)] = 51960, + [SMALL_STATE(1556)] = 51970, + [SMALL_STATE(1557)] = 51980, + [SMALL_STATE(1558)] = 51990, + [SMALL_STATE(1559)] = 52000, + [SMALL_STATE(1560)] = 52010, + [SMALL_STATE(1561)] = 52020, + [SMALL_STATE(1562)] = 52030, + [SMALL_STATE(1563)] = 52040, + [SMALL_STATE(1564)] = 52050, + [SMALL_STATE(1565)] = 52060, + [SMALL_STATE(1566)] = 52070, + [SMALL_STATE(1567)] = 52080, + [SMALL_STATE(1568)] = 52090, + [SMALL_STATE(1569)] = 52100, + [SMALL_STATE(1570)] = 52110, + [SMALL_STATE(1571)] = 52118, + [SMALL_STATE(1572)] = 52128, + [SMALL_STATE(1573)] = 52138, + [SMALL_STATE(1574)] = 52148, + [SMALL_STATE(1575)] = 52158, + [SMALL_STATE(1576)] = 52168, + [SMALL_STATE(1577)] = 52178, + [SMALL_STATE(1578)] = 52188, + [SMALL_STATE(1579)] = 52198, + [SMALL_STATE(1580)] = 52208, + [SMALL_STATE(1581)] = 52218, + [SMALL_STATE(1582)] = 52226, + [SMALL_STATE(1583)] = 52236, + [SMALL_STATE(1584)] = 52246, + [SMALL_STATE(1585)] = 52256, + [SMALL_STATE(1586)] = 52266, + [SMALL_STATE(1587)] = 52276, + [SMALL_STATE(1588)] = 52286, + [SMALL_STATE(1589)] = 52296, + [SMALL_STATE(1590)] = 52304, + [SMALL_STATE(1591)] = 52314, + [SMALL_STATE(1592)] = 52324, + [SMALL_STATE(1593)] = 52334, + [SMALL_STATE(1594)] = 52344, + [SMALL_STATE(1595)] = 52354, + [SMALL_STATE(1596)] = 52364, + [SMALL_STATE(1597)] = 52372, + [SMALL_STATE(1598)] = 52382, + [SMALL_STATE(1599)] = 52390, + [SMALL_STATE(1600)] = 52400, + [SMALL_STATE(1601)] = 52410, + [SMALL_STATE(1602)] = 52420, + [SMALL_STATE(1603)] = 52430, + [SMALL_STATE(1604)] = 52440, + [SMALL_STATE(1605)] = 52450, + [SMALL_STATE(1606)] = 52458, + [SMALL_STATE(1607)] = 52468, + [SMALL_STATE(1608)] = 52476, + [SMALL_STATE(1609)] = 52486, + [SMALL_STATE(1610)] = 52496, + [SMALL_STATE(1611)] = 52504, + [SMALL_STATE(1612)] = 52512, + [SMALL_STATE(1613)] = 52522, + [SMALL_STATE(1614)] = 52532, + [SMALL_STATE(1615)] = 52542, + [SMALL_STATE(1616)] = 52550, + [SMALL_STATE(1617)] = 52560, + [SMALL_STATE(1618)] = 52568, + [SMALL_STATE(1619)] = 52578, + [SMALL_STATE(1620)] = 52586, + [SMALL_STATE(1621)] = 52594, + [SMALL_STATE(1622)] = 52604, + [SMALL_STATE(1623)] = 52614, + [SMALL_STATE(1624)] = 52624, + [SMALL_STATE(1625)] = 52632, + [SMALL_STATE(1626)] = 52642, + [SMALL_STATE(1627)] = 52650, + [SMALL_STATE(1628)] = 52660, + [SMALL_STATE(1629)] = 52670, + [SMALL_STATE(1630)] = 52678, + [SMALL_STATE(1631)] = 52688, + [SMALL_STATE(1632)] = 52696, + [SMALL_STATE(1633)] = 52706, + [SMALL_STATE(1634)] = 52714, + [SMALL_STATE(1635)] = 52724, + [SMALL_STATE(1636)] = 52734, + [SMALL_STATE(1637)] = 52744, + [SMALL_STATE(1638)] = 52754, + [SMALL_STATE(1639)] = 52764, + [SMALL_STATE(1640)] = 52774, + [SMALL_STATE(1641)] = 52784, + [SMALL_STATE(1642)] = 52794, + [SMALL_STATE(1643)] = 52804, + [SMALL_STATE(1644)] = 52814, + [SMALL_STATE(1645)] = 52824, + [SMALL_STATE(1646)] = 52834, + [SMALL_STATE(1647)] = 52844, + [SMALL_STATE(1648)] = 52854, + [SMALL_STATE(1649)] = 52862, + [SMALL_STATE(1650)] = 52869, + [SMALL_STATE(1651)] = 52876, + [SMALL_STATE(1652)] = 52883, + [SMALL_STATE(1653)] = 52890, + [SMALL_STATE(1654)] = 52897, + [SMALL_STATE(1655)] = 52904, + [SMALL_STATE(1656)] = 52911, + [SMALL_STATE(1657)] = 52918, + [SMALL_STATE(1658)] = 52925, + [SMALL_STATE(1659)] = 52932, + [SMALL_STATE(1660)] = 52939, + [SMALL_STATE(1661)] = 52946, + [SMALL_STATE(1662)] = 52953, + [SMALL_STATE(1663)] = 52960, + [SMALL_STATE(1664)] = 52967, + [SMALL_STATE(1665)] = 52974, + [SMALL_STATE(1666)] = 52981, + [SMALL_STATE(1667)] = 52988, + [SMALL_STATE(1668)] = 52995, + [SMALL_STATE(1669)] = 53002, + [SMALL_STATE(1670)] = 53009, + [SMALL_STATE(1671)] = 53016, + [SMALL_STATE(1672)] = 53023, + [SMALL_STATE(1673)] = 53030, + [SMALL_STATE(1674)] = 53037, + [SMALL_STATE(1675)] = 53044, + [SMALL_STATE(1676)] = 53051, + [SMALL_STATE(1677)] = 53058, + [SMALL_STATE(1678)] = 53065, + [SMALL_STATE(1679)] = 53072, + [SMALL_STATE(1680)] = 53079, + [SMALL_STATE(1681)] = 53086, + [SMALL_STATE(1682)] = 53093, + [SMALL_STATE(1683)] = 53100, + [SMALL_STATE(1684)] = 53107, + [SMALL_STATE(1685)] = 53114, + [SMALL_STATE(1686)] = 53121, + [SMALL_STATE(1687)] = 53128, + [SMALL_STATE(1688)] = 53135, + [SMALL_STATE(1689)] = 53142, + [SMALL_STATE(1690)] = 53149, + [SMALL_STATE(1691)] = 53156, + [SMALL_STATE(1692)] = 53163, + [SMALL_STATE(1693)] = 53170, + [SMALL_STATE(1694)] = 53177, + [SMALL_STATE(1695)] = 53184, + [SMALL_STATE(1696)] = 53191, + [SMALL_STATE(1697)] = 53198, + [SMALL_STATE(1698)] = 53205, + [SMALL_STATE(1699)] = 53212, + [SMALL_STATE(1700)] = 53219, + [SMALL_STATE(1701)] = 53226, + [SMALL_STATE(1702)] = 53233, + [SMALL_STATE(1703)] = 53240, + [SMALL_STATE(1704)] = 53247, + [SMALL_STATE(1705)] = 53254, + [SMALL_STATE(1706)] = 53261, + [SMALL_STATE(1707)] = 53268, + [SMALL_STATE(1708)] = 53275, + [SMALL_STATE(1709)] = 53282, + [SMALL_STATE(1710)] = 53289, + [SMALL_STATE(1711)] = 53296, + [SMALL_STATE(1712)] = 53303, + [SMALL_STATE(1713)] = 53310, + [SMALL_STATE(1714)] = 53317, + [SMALL_STATE(1715)] = 53324, + [SMALL_STATE(1716)] = 53331, + [SMALL_STATE(1717)] = 53338, + [SMALL_STATE(1718)] = 53345, + [SMALL_STATE(1719)] = 53352, + [SMALL_STATE(1720)] = 53359, + [SMALL_STATE(1721)] = 53366, + [SMALL_STATE(1722)] = 53373, + [SMALL_STATE(1723)] = 53380, + [SMALL_STATE(1724)] = 53387, + [SMALL_STATE(1725)] = 53394, + [SMALL_STATE(1726)] = 53401, + [SMALL_STATE(1727)] = 53408, + [SMALL_STATE(1728)] = 53415, + [SMALL_STATE(1729)] = 53422, + [SMALL_STATE(1730)] = 53429, + [SMALL_STATE(1731)] = 53436, + [SMALL_STATE(1732)] = 53443, + [SMALL_STATE(1733)] = 53450, + [SMALL_STATE(1734)] = 53457, + [SMALL_STATE(1735)] = 53464, + [SMALL_STATE(1736)] = 53471, + [SMALL_STATE(1737)] = 53478, + [SMALL_STATE(1738)] = 53485, + [SMALL_STATE(1739)] = 53492, + [SMALL_STATE(1740)] = 53499, + [SMALL_STATE(1741)] = 53506, + [SMALL_STATE(1742)] = 53513, + [SMALL_STATE(1743)] = 53520, + [SMALL_STATE(1744)] = 53527, + [SMALL_STATE(1745)] = 53534, + [SMALL_STATE(1746)] = 53541, + [SMALL_STATE(1747)] = 53548, + [SMALL_STATE(1748)] = 53555, + [SMALL_STATE(1749)] = 53562, + [SMALL_STATE(1750)] = 53569, + [SMALL_STATE(1751)] = 53576, + [SMALL_STATE(1752)] = 53583, + [SMALL_STATE(1753)] = 53590, + [SMALL_STATE(1754)] = 53597, + [SMALL_STATE(1755)] = 53604, + [SMALL_STATE(1756)] = 53611, + [SMALL_STATE(1757)] = 53618, + [SMALL_STATE(1758)] = 53625, + [SMALL_STATE(1759)] = 53632, + [SMALL_STATE(1760)] = 53639, + [SMALL_STATE(1761)] = 53646, + [SMALL_STATE(1762)] = 53653, + [SMALL_STATE(1763)] = 53660, + [SMALL_STATE(1764)] = 53667, + [SMALL_STATE(1765)] = 53674, + [SMALL_STATE(1766)] = 53681, + [SMALL_STATE(1767)] = 53688, + [SMALL_STATE(1768)] = 53695, + [SMALL_STATE(1769)] = 53702, + [SMALL_STATE(1770)] = 53709, + [SMALL_STATE(1771)] = 53716, + [SMALL_STATE(1772)] = 53723, + [SMALL_STATE(1773)] = 53730, + [SMALL_STATE(1774)] = 53737, + [SMALL_STATE(1775)] = 53744, + [SMALL_STATE(1776)] = 53751, + [SMALL_STATE(1777)] = 53758, + [SMALL_STATE(1778)] = 53765, + [SMALL_STATE(1779)] = 53772, + [SMALL_STATE(1780)] = 53779, + [SMALL_STATE(1781)] = 53786, + [SMALL_STATE(1782)] = 53793, + [SMALL_STATE(1783)] = 53800, + [SMALL_STATE(1784)] = 53807, + [SMALL_STATE(1785)] = 53814, + [SMALL_STATE(1786)] = 53821, + [SMALL_STATE(1787)] = 53828, + [SMALL_STATE(1788)] = 53835, + [SMALL_STATE(1789)] = 53842, + [SMALL_STATE(1790)] = 53849, + [SMALL_STATE(1791)] = 53856, + [SMALL_STATE(1792)] = 53863, + [SMALL_STATE(1793)] = 53870, + [SMALL_STATE(1794)] = 53877, + [SMALL_STATE(1795)] = 53884, + [SMALL_STATE(1796)] = 53891, + [SMALL_STATE(1797)] = 53898, + [SMALL_STATE(1798)] = 53905, + [SMALL_STATE(1799)] = 53912, + [SMALL_STATE(1800)] = 53919, + [SMALL_STATE(1801)] = 53926, + [SMALL_STATE(1802)] = 53933, + [SMALL_STATE(1803)] = 53940, + [SMALL_STATE(1804)] = 53947, + [SMALL_STATE(1805)] = 53954, + [SMALL_STATE(1806)] = 53961, + [SMALL_STATE(1807)] = 53968, + [SMALL_STATE(1808)] = 53975, + [SMALL_STATE(1809)] = 53982, + [SMALL_STATE(1810)] = 53989, + [SMALL_STATE(1811)] = 53996, + [SMALL_STATE(1812)] = 54003, + [SMALL_STATE(1813)] = 54010, + [SMALL_STATE(1814)] = 54017, + [SMALL_STATE(1815)] = 54024, + [SMALL_STATE(1816)] = 54031, + [SMALL_STATE(1817)] = 54038, + [SMALL_STATE(1818)] = 54045, + [SMALL_STATE(1819)] = 54052, + [SMALL_STATE(1820)] = 54059, + [SMALL_STATE(1821)] = 54066, + [SMALL_STATE(1822)] = 54073, + [SMALL_STATE(1823)] = 54080, + [SMALL_STATE(1824)] = 54087, + [SMALL_STATE(1825)] = 54094, + [SMALL_STATE(1826)] = 54101, + [SMALL_STATE(1827)] = 54108, + [SMALL_STATE(1828)] = 54115, + [SMALL_STATE(1829)] = 54122, + [SMALL_STATE(1830)] = 54129, + [SMALL_STATE(1831)] = 54136, + [SMALL_STATE(1832)] = 54143, + [SMALL_STATE(1833)] = 54150, + [SMALL_STATE(1834)] = 54157, + [SMALL_STATE(1835)] = 54164, + [SMALL_STATE(1836)] = 54171, + [SMALL_STATE(1837)] = 54178, + [SMALL_STATE(1838)] = 54185, + [SMALL_STATE(1839)] = 54192, + [SMALL_STATE(1840)] = 54199, + [SMALL_STATE(1841)] = 54206, + [SMALL_STATE(1842)] = 54213, + [SMALL_STATE(1843)] = 54220, + [SMALL_STATE(1844)] = 54227, + [SMALL_STATE(1845)] = 54234, + [SMALL_STATE(1846)] = 54241, + [SMALL_STATE(1847)] = 54248, + [SMALL_STATE(1848)] = 54255, + [SMALL_STATE(1849)] = 54262, + [SMALL_STATE(1850)] = 54269, + [SMALL_STATE(1851)] = 54276, + [SMALL_STATE(1852)] = 54283, + [SMALL_STATE(1853)] = 54290, + [SMALL_STATE(1854)] = 54297, + [SMALL_STATE(1855)] = 54304, + [SMALL_STATE(1856)] = 54311, + [SMALL_STATE(1857)] = 54318, + [SMALL_STATE(1858)] = 54325, + [SMALL_STATE(1859)] = 54332, + [SMALL_STATE(1860)] = 54339, + [SMALL_STATE(1861)] = 54346, + [SMALL_STATE(1862)] = 54353, + [SMALL_STATE(1863)] = 54360, + [SMALL_STATE(1864)] = 54367, + [SMALL_STATE(1865)] = 54374, + [SMALL_STATE(1866)] = 54381, + [SMALL_STATE(1867)] = 54388, + [SMALL_STATE(1868)] = 54395, + [SMALL_STATE(1869)] = 54402, + [SMALL_STATE(1870)] = 54409, + [SMALL_STATE(1871)] = 54416, + [SMALL_STATE(1872)] = 54423, + [SMALL_STATE(1873)] = 54430, + [SMALL_STATE(1874)] = 54437, + [SMALL_STATE(1875)] = 54444, + [SMALL_STATE(1876)] = 54451, + [SMALL_STATE(1877)] = 54458, + [SMALL_STATE(1878)] = 54465, + [SMALL_STATE(1879)] = 54472, + [SMALL_STATE(1880)] = 54479, + [SMALL_STATE(1881)] = 54486, + [SMALL_STATE(1882)] = 54493, + [SMALL_STATE(1883)] = 54500, + [SMALL_STATE(1884)] = 54507, + [SMALL_STATE(1885)] = 54514, + [SMALL_STATE(1886)] = 54521, + [SMALL_STATE(1887)] = 54528, + [SMALL_STATE(1888)] = 54535, + [SMALL_STATE(1889)] = 54542, + [SMALL_STATE(1890)] = 54549, + [SMALL_STATE(1891)] = 54556, + [SMALL_STATE(1892)] = 54563, + [SMALL_STATE(1893)] = 54570, + [SMALL_STATE(1894)] = 54577, + [SMALL_STATE(1895)] = 54584, + [SMALL_STATE(1896)] = 54591, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -114764,2142 +116732,2149 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 16), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 40), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 16), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 40), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(508), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1320), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1751), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1128), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1752), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1543), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(482), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(644), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(644), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(655), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(106), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(961), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1030), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(892), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1859), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1611), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1855), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(979), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(939), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(835), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(811), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(925), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1480), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1344), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1384), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1579), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1584), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(592), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1737), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1576), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(419), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1870), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(558), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1798), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1797), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1760), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1599), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1788), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(594), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(593), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1787), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1784), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1768), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1360), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(758), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1592), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1442), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(758), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(770), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(510), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1323), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1802), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1126), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1780), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1596), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(163), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(960), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1023), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(864), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(35), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1582), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1612), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(600), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1668), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1589), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(438), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1873), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(559), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1735), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1734), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1786), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1619), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1721), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(507), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1316), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1681), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1130), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1682), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1621), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(264), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(958), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1036), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(855), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(40), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1578), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1577), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(599), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1805), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1566), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(423), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1828), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(554), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1808), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1809), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1690), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1550), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1706), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(505), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1318), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1818), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1124), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1803), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1615), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(320), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(965), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1020), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(880), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1606), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1564), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(601), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1650), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1613), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(418), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1876), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(569), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1666), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1662), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1807), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1554), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1657), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(497), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1330), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1769), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1171), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1770), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1558), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(487), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(597), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(597), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(601), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(125), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(992), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1043), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(929), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1893), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1549), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1890), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(993), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(45), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(815), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(758), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(747), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(811), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1467), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1360), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1392), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1623), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1592), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(593), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1870), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1621), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(420), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1888), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(554), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1780), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1771), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1778), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1588), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1858), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(638), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(639), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1878), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1877), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1876), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1373), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(798), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1553), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1448), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(798), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(784), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 40), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 16), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 40), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 16), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(494), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1333), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1820), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1217), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1798), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1614), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(190), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(989), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1058), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(963), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1594), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1583), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(598), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1726), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1590), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(410), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1891), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(545), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1861), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1857), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1804), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1578), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1833), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(495), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1328), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1221), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1821), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1646), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(263), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(991), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1065), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(959), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(34), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1584), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1568), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(617), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1670), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1582), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(409), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1894), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(548), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1724), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1718), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1825), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1567), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1696), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(499), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1324), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1699), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1211), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1700), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1636), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(294), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(995), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1042), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(930), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(36), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1572), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1622), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(641), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1823), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1569), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(422), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1846), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(555), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1832), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1834), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1708), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1557), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1860), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(516), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1319), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1878), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1150), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1872), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1626), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(482), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(644), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(644), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(655), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(976), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1010), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(896), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1859), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1611), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1855), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(979), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(939), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(835), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(811), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(925), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1480), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1344), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1384), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1572), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1571), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(605), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1830), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1567), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(448), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1826), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(557), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1825), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1819), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1806), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(594), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(593), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1787), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1784), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1768), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1360), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1092), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1592), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1442), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1092), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(770), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(482), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(644), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(644), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(655), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(106), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(961), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1030), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(835), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1859), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1611), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1855), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(939), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(811), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(925), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1480), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1344), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1384), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1579), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1584), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1576), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(419), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1870), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(558), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1798), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1797), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1760), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1599), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1788), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(593), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1787), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1784), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1768), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1360), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(758), - [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1592), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1442), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(758), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(770), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(163), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(960), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1023), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1582), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1612), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1589), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(438), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1873), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(559), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1735), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1734), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1786), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1619), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1721), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(264), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(958), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1036), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1578), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1577), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1566), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(423), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1828), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(554), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1808), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1809), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1690), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1550), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1706), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(504), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(320), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(965), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1020), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1606), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1564), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1613), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(418), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1876), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1666), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1662), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1807), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1554), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1657), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(233), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(976), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1010), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(504), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1331), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1849), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1195), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1896), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1548), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(487), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(597), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(597), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(601), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(987), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1072), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(916), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1893), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1549), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1890), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(993), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(815), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(758), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(811), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1467), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1360), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1392), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1550), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1551), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(618), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1885), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1552), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(438), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1882), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(550), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1881), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1880), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1879), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(638), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(639), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1878), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1877), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1876), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1373), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1119), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1553), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1448), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1119), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(784), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(503), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(487), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(597), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(597), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(601), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(125), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(992), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1043), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(758), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1893), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1549), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1890), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(45), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(815), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(747), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(811), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1467), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1360), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1392), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1623), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1592), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1621), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(420), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1888), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(554), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1780), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1771), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1778), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1588), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1858), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(638), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(639), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1878), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1877), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1876), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1373), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(798), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1553), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1448), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(798), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(784), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(496), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(190), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(989), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1058), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1594), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1583), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1590), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(410), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1891), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(545), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1861), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1857), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1804), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1578), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1833), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(498), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(327), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(987), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1072), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1550), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1551), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1552), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(438), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(550), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1881), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1880), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1879), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1618), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1887), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(500), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(263), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(991), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1065), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1584), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1568), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1582), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(409), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1894), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(548), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1724), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1825), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1567), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1696), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(501), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(294), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(995), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1042), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1572), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1571), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1567), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(448), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1826), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(557), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1825), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1819), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1806), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1568), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1632), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1629), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1846), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1585), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1622), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1569), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(422), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1846), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(555), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1832), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1834), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1708), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1557), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1860), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(502), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1577), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1586), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1864), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1560), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 25), [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 25), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 78), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 78), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 82), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 82), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 74), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 74), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 94), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 94), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 31), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 31), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 82), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 82), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 94), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 94), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 74), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 74), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 78), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 78), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 74), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 74), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 27), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 27), [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 29), [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 29), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 27), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 27), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 26), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 26), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 74), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 74), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 21), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 21), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 89), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 89), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 91), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 91), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 15), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 15), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 16), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 16), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 16), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 16), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 17), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 17), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 32), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 32), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 16), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 16), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 63), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 63), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 64), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 64), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 68), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 68), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 69), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 69), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 70), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 70), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 26), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 26), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 26), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 26), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 31), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 31), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 89), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 89), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 32), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 32), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 17), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 17), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 91), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 91), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 64), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 64), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 15), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 15), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 16), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 16), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 68), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 68), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 69), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 69), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 70), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 70), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 63), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 63), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 21), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 21), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 16), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 16), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 16), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 16), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 56), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 56), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(734), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(482), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(644), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(644), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(655), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(106), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1580), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1579), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1584), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(592), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1737), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1576), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(419), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1870), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(558), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1798), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1797), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1760), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1599), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1788), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(594), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(593), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1787), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1784), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1768), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1360), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(758), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1592), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1442), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(758), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(770), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(735), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(264), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1578), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1577), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(599), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1805), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1566), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(423), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1828), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(554), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1808), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1809), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1690), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1550), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1706), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(738), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(37), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1632), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1571), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(614), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1799), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1629), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(448), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1846), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(557), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1825), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1819), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1806), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1585), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(736), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(163), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(35), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1582), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1612), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(600), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1668), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1589), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(438), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1873), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(559), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1735), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1734), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1786), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1619), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1721), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(733), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(320), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1606), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1564), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(601), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1650), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1613), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(418), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1876), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(569), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1666), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1662), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1807), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1554), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1657), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(740), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(233), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1572), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(605), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1830), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1567), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1826), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1568), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(750), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(487), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(597), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(597), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(601), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(125), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1625), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(45), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1623), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1592), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(593), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1870), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1621), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(420), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1888), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(554), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1780), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1771), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1778), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1588), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1858), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(638), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(639), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1878), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1877), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1876), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1373), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(798), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1553), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1448), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(798), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(784), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(752), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(190), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1594), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1583), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(598), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1726), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1590), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(410), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1891), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(545), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1861), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1857), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1804), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1578), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1833), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(748), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(294), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(36), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1572), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1622), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(641), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1823), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1569), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(422), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1846), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(555), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1832), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1834), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1708), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1557), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1860), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(740), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(263), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1584), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1568), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(617), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1670), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1582), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(409), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1894), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(548), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1724), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1825), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1567), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1696), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(743), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(32), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1577), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1551), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(642), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1810), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1586), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(438), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1864), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(550), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1881), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1880), + [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1879), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1560), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(742), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(327), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1550), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(618), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1885), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1552), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1618), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1887), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1959] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1033), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(920), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1821), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1129), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1722), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1601), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(811), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(835), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1859), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1570), - [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1855), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(939), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(925), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1480), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1344), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1384), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1822), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1127), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1771), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1595), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1823), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1125), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1794), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1591), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1779), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1132), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1854), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1581), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 55), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 55), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(681), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1442), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(920), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(811), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(835), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1859), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1570), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1855), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(939), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(925), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1480), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1344), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1384), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(737), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 115), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 115), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 84), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 84), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 102), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 102), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 57), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 57), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 110), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 110), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 111), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 111), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 119), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 119), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 116), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 116), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(811), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(835), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1859), - [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1570), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1855), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 67), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 67), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 66), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 66), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 28), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 28), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 90), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 90), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [1911] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1039), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(825), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1839), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1163), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1740), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1546), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(747), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(758), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1893), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1595), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1890), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(815), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(811), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1467), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1360), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1392), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1840), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1158), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1789), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1634), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 55), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1797), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1198), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1807), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1554), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 55), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1841), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1222), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1812), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1628), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(676), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1448), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(747), + [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(758), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1893), + [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1595), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1890), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(825), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(747), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(758), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1893), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1595), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1890), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(815), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(811), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1467), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1360), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1392), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 84), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 84), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 120), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 120), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 57), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 57), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 110), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 110), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 111), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 111), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 116), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 116), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 102), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 102), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(745), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 90), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 90), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 66), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 66), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 13), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 13), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 56), [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 56), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 100), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 100), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 91), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 91), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 16), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 16), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 70), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 70), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 69), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 69), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 31), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 31), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 31), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 31), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 16), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 16), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 77), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 77), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 51), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 51), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 51), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 51), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 13), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 13), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 13), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 13), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(909), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 22), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 22), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 76), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 76), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1033), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 51), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 51), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 58), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 58), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 51), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 51), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 14), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 14), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 49), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 49), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 77), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 77), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(935), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 13), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 13), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1859), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), SHIFT(1859), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 33), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 33), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 76), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 76), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 76), SHIFT(1859), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 22), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 22), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 22), SHIFT(1859), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1859), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1503), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(977), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3060] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1033), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 60), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 79), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 106), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 96), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 75), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 107), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(811), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1103), - [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1101), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 13), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 13), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 28), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 28), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 13), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 13), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 12), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 12), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 13), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 13), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 51), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 51), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 28), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 28), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 13), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 13), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(780), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 51), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 51), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 67), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 67), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 100), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 100), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 77), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 77), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(828), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 49), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 49), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 58), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 58), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1039), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 13), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 13), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 14), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 14), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 51), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 51), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 22), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 22), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 51), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 51), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 77), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 77), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 76), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 76), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 69), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 69), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 70), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 70), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 31), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 31), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 91), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 91), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 16), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 16), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 16), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 16), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 31), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 31), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1893), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), SHIFT(1893), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 76), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 76), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 76), SHIFT(1893), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1893), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 22), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 22), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 22), SHIFT(1893), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1507), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(998), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2996] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1039), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(747), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1025), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1024), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 33), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 33), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 75), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 96), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 60), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 106), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 107), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 79), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 13), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 13), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 13), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 13), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(780), + [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(827), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 13), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 13), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 12), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 12), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 28), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 28), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(909), - [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(940), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1756), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 10), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1664), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 10), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1611), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1549), [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 33), [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 33), [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 33), [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 33), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 59), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 104), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 86), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 30), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 33), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 33), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1859), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 10), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 30), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1893), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 30), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 86), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 104), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 6, .dynamic_precedence = 1, .production_id = 112), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 59), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 33), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 33), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 10), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 86), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 30), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 30), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 30), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 30), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 6, .dynamic_precedence = 1, .production_id = 112), [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 104), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 59), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 86), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 88), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 88), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 30), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 10), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 10), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 10), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 10), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 105), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 105), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 10), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 59), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 104), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 30), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 71), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 33), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 33), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 10), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 10), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 88), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 88), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 10), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 10), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 105), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 105), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 50), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 50), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 20), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 20), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 10), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 10), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 10), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 10), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 88), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 88), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 86), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 59), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 30), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 104), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 10), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 10), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 86), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 6, .dynamic_precedence = 1, .production_id = 112), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 59), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 30), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 10), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 105), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 105), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 88), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 88), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 10), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 10), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 30), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 105), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 105), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 33), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 33), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 71), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 10), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 10), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 10), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 10), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 88), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 88), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 50), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 50), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 10), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 10), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 10), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 10), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 105), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 105), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 33), [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 33), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 105), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 105), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 73), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 59), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1418), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 18), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 30), - [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(612), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1642), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 10), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 105), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 33), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 10), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 88), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 72), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 92), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 19), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 109), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 35), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1366), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 117), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 10), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 35), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 101), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 83), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 113), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 48), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 108), SHIFT_REPEAT(1325), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 108), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1288), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 62), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 95), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 108), SHIFT_REPEAT(1334), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 108), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1228), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 62), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 83), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1441), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1441), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 101), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 83), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1503), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 112), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 34), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 83), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), - [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1558), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 114), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1007), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 112), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 118), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(528), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 30), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1279), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 62), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 61), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 121), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1544), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 93), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 121), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(543), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1839), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 120), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(707), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1565), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1133), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 114), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 87), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 48), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4356] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 69), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 70), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 91), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 91), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 69), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 20), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 20), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 88), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 88), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 18), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(631), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1728), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 59), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 73), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1410), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 30), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 19), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 10), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 105), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 10), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 92), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 33), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 88), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 72), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1135), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 62), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 48), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 114), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 35), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 83), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 35), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1432), + [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1432), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 10), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 95), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1267), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 62), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 101), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 83), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 108), SHIFT_REPEAT(1353), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 108), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 101), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 109), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 108), SHIFT_REPEAT(1348), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 108), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 118), SHIFT_REPEAT(1382), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 118), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 122), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 34), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1573), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 61), + [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1237), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 62), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1640), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(543), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1208), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1611), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(708), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 93), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1507), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(528), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 30), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 83), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 121), SHIFT_REPEAT(1801), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 121), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 113), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 83), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 113), + [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1061), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 119), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 115), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 122), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 115), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 48), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 87), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 70), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 69), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 91), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 69), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 91), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4728] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index d2103259..2b14ac10 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,8 +13,9 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -#ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -139,8 +140,7 @@ struct TSLanguage { lexer->advance(lexer, skip); \ start: \ skip = false; \ - lookahead = lexer->lookahead; \ - eof = lexer->eof(lexer); + lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \ @@ -166,7 +166,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) +#define SMALL_STATE(id) id - LARGE_STATE_COUNT #define STATE(id) id @@ -176,7 +176,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value) \ + .state = state_value \ } \ }} @@ -184,7 +184,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value), \ + .state = state_value, \ .repetition = true \ } \ }}